ERC-20
Overview
Max Total Supply
10,000,000,000 TARZAN
Holders
39
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
16,380,386.00447788 TARZANValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TarzanInu
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-01 */ /* Official contract for www.TarzanInu.com https://t.me/TarzanInu \\ \\ \\ /`}_ ___ '-Z\'-._ .;'-,) \\_. ', .<C' 0(_ '\\'. '.-._,/) L_ =( \\ '._ _ ('-' \\_ \ '- '-. '\\ z.,.' ) _ \\ | _ '-.2.\ \ _.' '-. \\ /) / '. \ .' r './\\,__.-' \ | _.' __.' \ T_'.-.\ ( \ ,_-' (" '._ |/:' |\ \ | "-' ;;;; '-'| :/\\ __|| ;;;; (.' || \\ `) / ';;; | / | )/ "-' .;;; L .'| | || ';; | ( \| || / 7 |\ <=,_J \| ;; || ;; |/ .;; || ;;;; || */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { //function _msgSender() internal view virtual returns (address payable) { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = block.timestamp + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(block.timestamp > _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IAirdrop { function airdrop(address recipient, uint256 amount) external; } contract TarzanInu is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; mapping (address => bool) private botWallets; bool botscantrade = false; bool public canTrade = false; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 10000000000 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; address public marketingWallet; string private _name = "Tarzan Inu"; string private _symbol = "TARZAN"; uint8 private _decimals = 9; uint256 public _taxFee = 1; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 10; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 130000000 * 10**9; uint256 public numTokensSellToAddToLiquidity = 100000000 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //Mainnet & Testnet ETH // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function airdrop(address recipient, uint256 amount) external onlyOwner() { removeAllFee(); _transfer(_msgSender(), recipient, amount * 10**9); restoreAllFee(); } function airdropInternal(address recipient, uint256 amount) internal { removeAllFee(); _transfer(_msgSender(), recipient, amount); restoreAllFee(); } function airdropArray(address[] calldata newholders, uint256[] calldata amounts) external onlyOwner(){ uint256 iterator = 0; require(newholders.length == amounts.length, "must be the same length"); while(iterator < newholders.length){ airdropInternal(newholders[iterator], amounts[iterator] * 10**9); iterator += 1; } } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setMarketingWallet(address walletAddress) public onlyOwner { marketingWallet = walletAddress; } function upliftTxAmount() external onlyOwner() { _maxTxAmount = 690000000000 * 10**9; } function setSwapThresholdAmount(uint256 SwapThresholdAmount) external onlyOwner() { require(SwapThresholdAmount > 69000, "Swap Threshold Amount cannot be less than 69000"); numTokensSellToAddToLiquidity = SwapThresholdAmount * 10**9; } function claimTokens () public onlyOwner { payable(marketingWallet).transfer(address(this).balance); } function claimOtherTokens(IERC20 tokenAddress, address walletaddress) external onlyOwner() { tokenAddress.transfer(walletaddress, tokenAddress.balanceOf(address(this))); } function clearStuckBalance (address payable walletaddress) external onlyOwner() { walletaddress.transfer(address(this).balance); } function addBotWallet(address botwallet) external onlyOwner() { botWallets[botwallet] = true; } function removeBotWallets(address[] calldata botwallet) external { require( msg.sender == marketingWallet ); for (uint256 i; i < botwallet.length; ++i) { botWallets[botwallet[i]] = true; } } function removeBotWallet(address botwallet) external onlyOwner() { botWallets[botwallet] = false; } function getBotWalletStatus(address botwallet) public view returns (bool) { return botWallets[botwallet]; } function allowtrading()external onlyOwner() { canTrade = true; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function setFeeToZero() external onlyOwner() { _taxFee = 0; _liquidityFee = 0; } function reduceFeeToHalf() external onlyOwner() { _taxFee = 1; _liquidityFee = 5; } function setOriginalFee() external onlyOwner() { _taxFee = 1; _liquidityFee = 10; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { 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); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves // add the marketing wallet uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); uint256 marketingshare = newBalance.mul(80).div(100); payable(marketingWallet).transfer(marketingshare); newBalance -= marketingshare; // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!canTrade){ require(sender == owner()); // only owner allowed to trade or add liquidity } if(botWallets[sender] || botWallets[recipient]){ require(botscantrade, "bots arent allowed to trade"); } if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"addBotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newholders","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropArray","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowtrading","outputs":[],"stateMutability":"nonpayable","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":"canTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"tokenAddress","type":"address"},{"internalType":"address","name":"walletaddress","type":"address"}],"name":"claimOtherTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"walletaddress","type":"address"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"getBotWalletStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","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":"reduceFeeToHalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"botwallet","type":"address"}],"name":"removeBotWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"botwallet","type":"address[]"}],"name":"removeBotWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setFeeToZero","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"walletAddress","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOriginalFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"SwapThresholdAmount","type":"uint256"}],"name":"setSwapThresholdAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"upliftTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600a805461ffff19169055678ac7230489e80000600b8190556200002b906000196200044d565b620000399060001962000470565b600c5560408051808201909152600a808252695461727a616e20496e7560b01b60209092019182526200006f91600f91620003a7565b50604080518082019091526006808252652a20a92d20a760d11b60209092019182526200009f91601091620003a7565b506011805460ff1916600917905560016012819055601355600a60148190556015556016805461ff0019166101001790556701cdda4faccd000060175567016345785d8a0000601855348015620000f557600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c543360009081526003602090815260409182902092909255805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a01559260048083019392829003018186803b1580156200019957600080fd5b505afa158015620001ae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d4919062000496565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200021d57600080fd5b505afa15801562000232573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000258919062000496565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620002a157600080fd5b505af1158015620002b6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002dc919062000496565b6001600160a01b0390811660a0528116608052600160066000620003086000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620003503390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040516200039891815260200190565b60405180910390a35062000505565b828054620003b590620004c8565b90600052602060002090601f016020900481019282620003d9576000855562000424565b82601f10620003f457805160ff191683800117855562000424565b8280016001018555821562000424579182015b828111156200042457825182559160200191906001019062000407565b506200043292915062000436565b5090565b5b8082111562000432576000815560010162000437565b6000826200046b57634e487b7160e01b600052601260045260246000fd5b500690565b6000828210156200049157634e487b7160e01b600052601160045260246000fd5b500390565b600060208284031215620004a957600080fd5b81516001600160a01b0381168114620004c157600080fd5b9392505050565b600181811c90821680620004dd57607f821691505b60208210811415620004ff57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161329d62000555600039600081816105fa0152611e760152600081816103ed015281816126d40152818161279c015281816127d8015281816128c901526128f0015261329d6000f3fe60806040526004361061031e5760003560e01c806360d48489116101ab578063a6334231116100f7578063d12a768811610095578063dd62ed3e1161006f578063dd62ed3e14610959578063e8c4c43c1461099f578063ea2f0b37146109b4578063f2fde38b146109d457600080fd5b8063d12a768814610903578063d4a3883f14610919578063dd4670641461093957600080fd5b8063b62b343d116100d1578063b62b343d14610899578063b6c52324146108ae578063c49b9a80146108c3578063c79d4762146108e357600080fd5b8063a63342311461084f578063a69df4b514610864578063a9059cbb1461087957600080fd5b8063764d72bf116101645780638ba4cc3c1161013e5780638ba4cc3c146107dc5780638da5cb5b146107fc57806395d89b411461081a578063a457c2d71461082f57600080fd5b8063764d72bf1461076d5780637d1db4a51461078d57806388f82020146107a357600080fd5b806360d48489146106b45780636b35b93d146106ed5780636bc87c3a1461070257806370a0823114610718578063715018a61461073857806375f0a8741461074d57600080fd5b80633685d4191161026a5780634549b039116102235780634a74bb02116101fd5780634a74bb021461061c57806352390c021461063b5780635342acb41461065b5780635d098b381461069457600080fd5b80634549b039146105b357806348c54b9d146105d357806349bd5a5e146105e857600080fd5b80633685d419146104fd578063395093511461051d5780633ae7dc201461053d5780633b124fe71461055d5780633bd5d17314610573578063437823ec1461059357600080fd5b806318160ddd116102d75780632a360631116102b15780632a3606311461047c5780632d8381191461049c5780632f05205c146104bc578063313ce567146104db57600080fd5b806318160ddd1461042757806323b872dd1461043c57806329e04b4a1461045c57600080fd5b80630305caff1461032a57806306fdde031461034c578063095ea7b3146103775780630b8f1ff8146103a757806313114a9d146103bc5780631694505e146103db57600080fd5b3661032557005b600080fd5b34801561033657600080fd5b5061034a610345366004612d50565b6109f4565b005b34801561035857600080fd5b50610361610a48565b60405161036e9190612d6d565b60405180910390f35b34801561038357600080fd5b50610397610392366004612dc2565b610ada565b604051901515815260200161036e565b3480156103b357600080fd5b5061034a610af1565b3480156103c857600080fd5b50600d545b60405190815260200161036e565b3480156103e757600080fd5b5061040f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161036e565b34801561043357600080fd5b50600b546103cd565b34801561044857600080fd5b50610397610457366004612dee565b610b27565b34801561046857600080fd5b5061034a610477366004612e2f565b610b90565b34801561048857600080fd5b5061034a610497366004612d50565b610c38565b3480156104a857600080fd5b506103cd6104b7366004612e2f565b610c86565b3480156104c857600080fd5b50600a5461039790610100900460ff1681565b3480156104e757600080fd5b5060115460405160ff909116815260200161036e565b34801561050957600080fd5b5061034a610518366004612d50565b610d0a565b34801561052957600080fd5b50610397610538366004612dc2565b610ec1565b34801561054957600080fd5b5061034a610558366004612e48565b610ef7565b34801561056957600080fd5b506103cd60125481565b34801561057f57600080fd5b5061034a61058e366004612e2f565b611025565b34801561059f57600080fd5b5061034a6105ae366004612d50565b61110f565b3480156105bf57600080fd5b506103cd6105ce366004612e8f565b61115d565b3480156105df57600080fd5b5061034a6111ea565b3480156105f457600080fd5b5061040f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561062857600080fd5b5060165461039790610100900460ff1681565b34801561064757600080fd5b5061034a610656366004612d50565b611250565b34801561066757600080fd5b50610397610676366004612d50565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156106a057600080fd5b5061034a6106af366004612d50565b6113a3565b3480156106c057600080fd5b506103976106cf366004612d50565b6001600160a01b031660009081526009602052604090205460ff1690565b3480156106f957600080fd5b5061034a6113ef565b34801561070e57600080fd5b506103cd60145481565b34801561072457600080fd5b506103cd610733366004612d50565b611425565b34801561074457600080fd5b5061034a611484565b34801561075957600080fd5b50600e5461040f906001600160a01b031681565b34801561077957600080fd5b5061034a610788366004612d50565b6114e6565b34801561079957600080fd5b506103cd60175481565b3480156107af57600080fd5b506103976107be366004612d50565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156107e857600080fd5b5061034a6107f7366004612dc2565b611545565b34801561080857600080fd5b506000546001600160a01b031661040f565b34801561082657600080fd5b506103616115a0565b34801561083b57600080fd5b5061039761084a366004612dc2565b6115af565b34801561085b57600080fd5b5061034a6115fe565b34801561087057600080fd5b5061034a611639565b34801561088557600080fd5b50610397610894366004612dc2565b61173f565b3480156108a557600080fd5b5061034a61174c565b3480156108ba57600080fd5b506002546103cd565b3480156108cf57600080fd5b5061034a6108de366004612eb4565b611782565b3480156108ef57600080fd5b5061034a6108fe366004612f1d565b611800565b34801561090f57600080fd5b506103cd60185481565b34801561092557600080fd5b5061034a610934366004612f5f565b611887565b34801561094557600080fd5b5061034a610954366004612e2f565b61197a565b34801561096557600080fd5b506103cd610974366004612e48565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3480156109ab57600080fd5b5061034a6119ff565b3480156109c057600080fd5b5061034a6109cf366004612d50565b611a38565b3480156109e057600080fd5b5061034a6109ef366004612d50565b611a83565b6000546001600160a01b03163314610a275760405162461bcd60e51b8152600401610a1e90612fcb565b60405180910390fd5b6001600160a01b03166000908152600960205260409020805460ff19169055565b6060600f8054610a5790613000565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8390613000565b8015610ad05780601f10610aa557610100808354040283529160200191610ad0565b820191906000526020600020905b815481529060010190602001808311610ab357829003601f168201915b5050505050905090565b6000610ae7338484611b5b565b5060015b92915050565b6000546001600160a01b03163314610b1b5760405162461bcd60e51b8152600401610a1e90612fcb565b60016012556005601455565b6000610b34848484611c7f565b610b868433610b81856040518060600160405280602881526020016131fb602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190611f30565b611b5b565b5060019392505050565b6000546001600160a01b03163314610bba5760405162461bcd60e51b8152600401610a1e90612fcb565b62010d888111610c245760405162461bcd60e51b815260206004820152602f60248201527f53776170205468726573686f6c6420416d6f756e742063616e6e6f742062652060448201526e06c657373207468616e20363930303608c1b6064820152608401610a1e565b610c3281633b9aca00613051565b60185550565b6000546001600160a01b03163314610c625760405162461bcd60e51b8152600401610a1e90612fcb565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b6000600c54821115610ced5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a1e565b6000610cf7611f6a565b9050610d038382611f8d565b9392505050565b6000546001600160a01b03163314610d345760405162461bcd60e51b8152600401610a1e90612fcb565b6001600160a01b03811660009081526007602052604090205460ff16610d9c5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a1e565b60005b600854811015610ebd57816001600160a01b031660088281548110610dc657610dc6613070565b6000918252602090912001546001600160a01b03161415610eab5760088054610df190600190613086565b81548110610e0157610e01613070565b600091825260209091200154600880546001600160a01b039092169183908110610e2d57610e2d613070565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e8557610e8561309d565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610eb5816130b3565b915050610d9f565b5050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610ae7918590610b819086611fcf565b6000546001600160a01b03163314610f215760405162461bcd60e51b8152600401610a1e90612fcb565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a082319060240160206040518083038186803b158015610f6a57600080fd5b505afa158015610f7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa291906130ce565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610fe857600080fd5b505af1158015610ffc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102091906130e7565b505050565b3360008181526007602052604090205460ff161561109a5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a1e565b60006110a58361202e565b505050506001600160a01b0384166000908152600360205260409020549192506110d19190508261207d565b6001600160a01b038316600090815260036020526040902055600c546110f7908261207d565b600c55600d546111079084611fcf565b600d55505050565b6000546001600160a01b031633146111395760405162461bcd60e51b8152600401610a1e90612fcb565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b548311156111b15760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a1e565b816111d05760006111c18461202e565b50939550610aeb945050505050565b60006111db8461202e565b50929550610aeb945050505050565b6000546001600160a01b031633146112145760405162461bcd60e51b8152600401610a1e90612fcb565b600e546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561124d573d6000803e3d6000fd5b50565b6000546001600160a01b0316331461127a5760405162461bcd60e51b8152600401610a1e90612fcb565b6001600160a01b03811660009081526007602052604090205460ff16156112e35760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a1e565b6001600160a01b0381166000908152600360205260409020541561133d576001600160a01b03811660009081526003602052604090205461132390610c86565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b031633146113cd5760405162461bcd60e51b8152600401610a1e90612fcb565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114195760405162461bcd60e51b8152600401610a1e90612fcb565b60006012819055601455565b6001600160a01b03811660009081526007602052604081205460ff161561146257506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610aeb90610c86565b6000546001600160a01b031633146114ae5760405162461bcd60e51b8152600401610a1e90612fcb565b600080546040516001600160a01b0390911690600080516020613223833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146115105760405162461bcd60e51b8152600401610a1e90612fcb565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610ebd573d6000803e3d6000fd5b6000546001600160a01b0316331461156f5760405162461bcd60e51b8152600401610a1e90612fcb565b6115776120bf565b61158f338361158a84633b9aca00613051565b611c7f565b610ebd601354601255601554601455565b606060108054610a5790613000565b6000610ae73384610b8185604051806060016040528060258152602001613243602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190611f30565b6000546001600160a01b031633146116285760405162461bcd60e51b8152600401610a1e90612fcb565b600a805461ff001916610100179055565b6001546001600160a01b0316331461169f5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610a1e565b60025442116116f05760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610a1e565b600154600080546040516001600160a01b03938416939091169160008051602061322383398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610ae7338484611c7f565b6000546001600160a01b031633146117765760405162461bcd60e51b8152600401610a1e90612fcb565b6001601255600a601455565b6000546001600160a01b031633146117ac5760405162461bcd60e51b8152600401610a1e90612fcb565b601680548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906117f590831515815260200190565b60405180910390a150565b600e546001600160a01b0316331461181757600080fd5b60005b818110156110205760016009600085858581811061183a5761183a613070565b905060200201602081019061184f9190612d50565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055611880816130b3565b905061181a565b6000546001600160a01b031633146118b15760405162461bcd60e51b8152600401610a1e90612fcb565b60008382146119025760405162461bcd60e51b815260206004820152601760248201527f6d757374206265207468652073616d65206c656e6774680000000000000000006044820152606401610a1e565b838110156119735761196185858381811061191f5761191f613070565b90506020020160208101906119349190612d50565b84848481811061194657611946613070565b90506020020135633b9aca0061195c9190613051565b6120ed565b61196c600182613104565b9050611902565b5050505050565b6000546001600160a01b031633146119a45760405162461bcd60e51b8152600401610a1e90612fcb565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556119d38142613104565b600255600080546040516001600160a01b0390911690600080516020613223833981519152908390a350565b6000546001600160a01b03163314611a295760405162461bcd60e51b8152600401610a1e90612fcb565b682567ac70392b880000601755565b6000546001600160a01b03163314611a625760405162461bcd60e51b8152600401610a1e90612fcb565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b03163314611aad5760405162461bcd60e51b8152600401610a1e90612fcb565b6001600160a01b038116611b125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1e565b600080546040516001600160a01b038085169392169160008051602061322383398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611bbd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a1e565b6001600160a01b038216611c1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a1e565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611ce35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a1e565b6001600160a01b038216611d455760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a1e565b60008111611da75760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a1e565b6000546001600160a01b03848116911614801590611dd357506000546001600160a01b03838116911614155b15611e3b57601754811115611e3b5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a1e565b6000611e4630611425565b90506017548110611e5657506017545b60185481108015908190611e6d575060165460ff16155b8015611eab57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611ebe5750601654610100900460ff165b15611ed1576018549150611ed182612100565b6001600160a01b03851660009081526006602052604090205460019060ff1680611f1357506001600160a01b03851660009081526006602052604090205460ff165b15611f1c575060005b611f28868686846121ff565b505050505050565b60008184841115611f545760405162461bcd60e51b8152600401610a1e9190612d6d565b506000611f618486613086565b95945050505050565b6000806000611f7761243b565b9092509050611f868282611f8d565b9250505090565b6000610d0383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506125bd565b600080611fdc8385613104565b905083811015610d035760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a1e565b60008060008060008060008060006120458a6125eb565b92509250925060008060006120638d868661205e611f6a565b61262d565b919f909e50909c50959a5093985091965092945050505050565b6000610d0383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f30565b6012541580156120cf5750601454155b156120d657565b601280546013556014805460155560009182905555565b6120f56120bf565b61158f338383611c7f565b6016805460ff19166001179055600061211a826002611f8d565b90506000612128838361207d565b9050476121348361267d565b6000612140478361207d565b9050600061215a6064612154846050612844565b90611f8d565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612195573d6000803e3d6000fd5b506121a08183613086565b91506121ac84836128c3565b60408051868152602081018490529081018590527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506016805460ff1916905550505050565b600a54610100900460ff16612228576000546001600160a01b0385811691161461222857600080fd5b6001600160a01b03841660009081526009602052604090205460ff168061226757506001600160a01b03831660009081526009602052604090205460ff165b156122be57600a5460ff166122be5760405162461bcd60e51b815260206004820152601b60248201527f626f7473206172656e7420616c6c6f77656420746f20747261646500000000006044820152606401610a1e565b806122cb576122cb6120bf565b6001600160a01b03841660009081526007602052604090205460ff16801561230c57506001600160a01b03831660009081526007602052604090205460ff16155b156123215761231c8484846129d1565b61241f565b6001600160a01b03841660009081526007602052604090205460ff1615801561236257506001600160a01b03831660009081526007602052604090205460ff165b156123725761231c848484612af7565b6001600160a01b03841660009081526007602052604090205460ff161580156123b457506001600160a01b03831660009081526007602052604090205460ff16155b156123c45761231c848484612ba0565b6001600160a01b03841660009081526007602052604090205460ff16801561240457506001600160a01b03831660009081526007602052604090205460ff165b156124145761231c848484612be4565b61241f848484612ba0565b8061243557612435601354601255601554601455565b50505050565b600c54600b546000918291825b60085481101561258d5782600360006008848154811061246a5761246a613070565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806124d557508160046000600884815481106124ae576124ae613070565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156124eb57600c54600b54945094505050509091565b612531600360006008848154811061250557612505613070565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061207d565b9250612579600460006008848154811061254d5761254d613070565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061207d565b915080612585816130b3565b915050612448565b50600b54600c5461259d91611f8d565b8210156125b457600c54600b549350935050509091565b90939092509050565b600081836125de5760405162461bcd60e51b8152600401610a1e9190612d6d565b506000611f61848661311c565b6000806000806125fa85612c57565b9050600061260786612c73565b9050600061261f82612619898661207d565b9061207d565b979296509094509092505050565b600080808061263c8886612844565b9050600061264a8887612844565b905060006126588888612844565b9050600061266a82612619868661207d565b939b939a50919850919650505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106126b2576126b2613070565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561272b57600080fd5b505afa15801561273f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612763919061313e565b8160018151811061277657612776613070565b60200260200101906001600160a01b031690816001600160a01b0316815250506127c1307f000000000000000000000000000000000000000000000000000000000000000084611b5b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061281690859060009086903090429060040161315b565b600060405180830381600087803b15801561283057600080fd5b505af1158015611f28573d6000803e3d6000fd5b60008261285357506000610aeb565b600061285f8385613051565b90508261286c858361311c565b14610d035760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a1e565b6128ee307f000000000000000000000000000000000000000000000000000000000000000084611b5b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806129356000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561299857600080fd5b505af11580156129ac573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061197391906131cc565b6000806000806000806129e38761202e565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612a15908861207d565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612a44908761207d565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612a739086611fcf565b6001600160a01b038916600090815260036020526040902055612a9581612c8f565b612a9f8483612d17565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612ae491815260200190565b60405180910390a3505050505050505050565b600080600080600080612b098761202e565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b3b908761207d565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612b719084611fcf565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612a739086611fcf565b600080600080600080612bb28761202e565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612a44908761207d565b600080600080600080612bf68761202e565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612c28908861207d565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612b3b908761207d565b6000610aeb60646121546012548561284490919063ffffffff16565b6000610aeb60646121546014548561284490919063ffffffff16565b6000612c99611f6a565b90506000612ca78383612844565b30600090815260036020526040902054909150612cc49082611fcf565b3060009081526003602090815260408083209390935560079052205460ff16156110205730600090815260046020526040902054612d029084611fcf565b30600090815260046020526040902055505050565b600c54612d24908361207d565b600c55600d54612d349082611fcf565b600d555050565b6001600160a01b038116811461124d57600080fd5b600060208284031215612d6257600080fd5b8135610d0381612d3b565b600060208083528351808285015260005b81811015612d9a57858101830151858201604001528201612d7e565b81811115612dac576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612dd557600080fd5b8235612de081612d3b565b946020939093013593505050565b600080600060608486031215612e0357600080fd5b8335612e0e81612d3b565b92506020840135612e1e81612d3b565b929592945050506040919091013590565b600060208284031215612e4157600080fd5b5035919050565b60008060408385031215612e5b57600080fd5b8235612e6681612d3b565b91506020830135612e7681612d3b565b809150509250929050565b801515811461124d57600080fd5b60008060408385031215612ea257600080fd5b823591506020830135612e7681612e81565b600060208284031215612ec657600080fd5b8135610d0381612e81565b60008083601f840112612ee357600080fd5b50813567ffffffffffffffff811115612efb57600080fd5b6020830191508360208260051b8501011115612f1657600080fd5b9250929050565b60008060208385031215612f3057600080fd5b823567ffffffffffffffff811115612f4757600080fd5b612f5385828601612ed1565b90969095509350505050565b60008060008060408587031215612f7557600080fd5b843567ffffffffffffffff80821115612f8d57600080fd5b612f9988838901612ed1565b90965094506020870135915080821115612fb257600080fd5b50612fbf87828801612ed1565b95989497509550505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061301457607f821691505b6020821081141561303557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561306b5761306b61303b565b500290565b634e487b7160e01b600052603260045260246000fd5b6000828210156130985761309861303b565b500390565b634e487b7160e01b600052603160045260246000fd5b60006000198214156130c7576130c761303b565b5060010190565b6000602082840312156130e057600080fd5b5051919050565b6000602082840312156130f957600080fd5b8151610d0381612e81565b600082198211156131175761311761303b565b500190565b60008261313957634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561315057600080fd5b8151610d0381612d3b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131ab5784516001600160a01b031683529383019391830191600101613186565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156131e157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220302844810bf52c40f1a04008f14ff966fd510563baccf4083318c2011816574464736f6c63430008090033
Deployed Bytecode
0x60806040526004361061031e5760003560e01c806360d48489116101ab578063a6334231116100f7578063d12a768811610095578063dd62ed3e1161006f578063dd62ed3e14610959578063e8c4c43c1461099f578063ea2f0b37146109b4578063f2fde38b146109d457600080fd5b8063d12a768814610903578063d4a3883f14610919578063dd4670641461093957600080fd5b8063b62b343d116100d1578063b62b343d14610899578063b6c52324146108ae578063c49b9a80146108c3578063c79d4762146108e357600080fd5b8063a63342311461084f578063a69df4b514610864578063a9059cbb1461087957600080fd5b8063764d72bf116101645780638ba4cc3c1161013e5780638ba4cc3c146107dc5780638da5cb5b146107fc57806395d89b411461081a578063a457c2d71461082f57600080fd5b8063764d72bf1461076d5780637d1db4a51461078d57806388f82020146107a357600080fd5b806360d48489146106b45780636b35b93d146106ed5780636bc87c3a1461070257806370a0823114610718578063715018a61461073857806375f0a8741461074d57600080fd5b80633685d4191161026a5780634549b039116102235780634a74bb02116101fd5780634a74bb021461061c57806352390c021461063b5780635342acb41461065b5780635d098b381461069457600080fd5b80634549b039146105b357806348c54b9d146105d357806349bd5a5e146105e857600080fd5b80633685d419146104fd578063395093511461051d5780633ae7dc201461053d5780633b124fe71461055d5780633bd5d17314610573578063437823ec1461059357600080fd5b806318160ddd116102d75780632a360631116102b15780632a3606311461047c5780632d8381191461049c5780632f05205c146104bc578063313ce567146104db57600080fd5b806318160ddd1461042757806323b872dd1461043c57806329e04b4a1461045c57600080fd5b80630305caff1461032a57806306fdde031461034c578063095ea7b3146103775780630b8f1ff8146103a757806313114a9d146103bc5780631694505e146103db57600080fd5b3661032557005b600080fd5b34801561033657600080fd5b5061034a610345366004612d50565b6109f4565b005b34801561035857600080fd5b50610361610a48565b60405161036e9190612d6d565b60405180910390f35b34801561038357600080fd5b50610397610392366004612dc2565b610ada565b604051901515815260200161036e565b3480156103b357600080fd5b5061034a610af1565b3480156103c857600080fd5b50600d545b60405190815260200161036e565b3480156103e757600080fd5b5061040f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161036e565b34801561043357600080fd5b50600b546103cd565b34801561044857600080fd5b50610397610457366004612dee565b610b27565b34801561046857600080fd5b5061034a610477366004612e2f565b610b90565b34801561048857600080fd5b5061034a610497366004612d50565b610c38565b3480156104a857600080fd5b506103cd6104b7366004612e2f565b610c86565b3480156104c857600080fd5b50600a5461039790610100900460ff1681565b3480156104e757600080fd5b5060115460405160ff909116815260200161036e565b34801561050957600080fd5b5061034a610518366004612d50565b610d0a565b34801561052957600080fd5b50610397610538366004612dc2565b610ec1565b34801561054957600080fd5b5061034a610558366004612e48565b610ef7565b34801561056957600080fd5b506103cd60125481565b34801561057f57600080fd5b5061034a61058e366004612e2f565b611025565b34801561059f57600080fd5b5061034a6105ae366004612d50565b61110f565b3480156105bf57600080fd5b506103cd6105ce366004612e8f565b61115d565b3480156105df57600080fd5b5061034a6111ea565b3480156105f457600080fd5b5061040f7f000000000000000000000000ac0c097d523d2380419d402713d1f70d9989ae3581565b34801561062857600080fd5b5060165461039790610100900460ff1681565b34801561064757600080fd5b5061034a610656366004612d50565b611250565b34801561066757600080fd5b50610397610676366004612d50565b6001600160a01b031660009081526006602052604090205460ff1690565b3480156106a057600080fd5b5061034a6106af366004612d50565b6113a3565b3480156106c057600080fd5b506103976106cf366004612d50565b6001600160a01b031660009081526009602052604090205460ff1690565b3480156106f957600080fd5b5061034a6113ef565b34801561070e57600080fd5b506103cd60145481565b34801561072457600080fd5b506103cd610733366004612d50565b611425565b34801561074457600080fd5b5061034a611484565b34801561075957600080fd5b50600e5461040f906001600160a01b031681565b34801561077957600080fd5b5061034a610788366004612d50565b6114e6565b34801561079957600080fd5b506103cd60175481565b3480156107af57600080fd5b506103976107be366004612d50565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156107e857600080fd5b5061034a6107f7366004612dc2565b611545565b34801561080857600080fd5b506000546001600160a01b031661040f565b34801561082657600080fd5b506103616115a0565b34801561083b57600080fd5b5061039761084a366004612dc2565b6115af565b34801561085b57600080fd5b5061034a6115fe565b34801561087057600080fd5b5061034a611639565b34801561088557600080fd5b50610397610894366004612dc2565b61173f565b3480156108a557600080fd5b5061034a61174c565b3480156108ba57600080fd5b506002546103cd565b3480156108cf57600080fd5b5061034a6108de366004612eb4565b611782565b3480156108ef57600080fd5b5061034a6108fe366004612f1d565b611800565b34801561090f57600080fd5b506103cd60185481565b34801561092557600080fd5b5061034a610934366004612f5f565b611887565b34801561094557600080fd5b5061034a610954366004612e2f565b61197a565b34801561096557600080fd5b506103cd610974366004612e48565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3480156109ab57600080fd5b5061034a6119ff565b3480156109c057600080fd5b5061034a6109cf366004612d50565b611a38565b3480156109e057600080fd5b5061034a6109ef366004612d50565b611a83565b6000546001600160a01b03163314610a275760405162461bcd60e51b8152600401610a1e90612fcb565b60405180910390fd5b6001600160a01b03166000908152600960205260409020805460ff19169055565b6060600f8054610a5790613000565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8390613000565b8015610ad05780601f10610aa557610100808354040283529160200191610ad0565b820191906000526020600020905b815481529060010190602001808311610ab357829003601f168201915b5050505050905090565b6000610ae7338484611b5b565b5060015b92915050565b6000546001600160a01b03163314610b1b5760405162461bcd60e51b8152600401610a1e90612fcb565b60016012556005601455565b6000610b34848484611c7f565b610b868433610b81856040518060600160405280602881526020016131fb602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190611f30565b611b5b565b5060019392505050565b6000546001600160a01b03163314610bba5760405162461bcd60e51b8152600401610a1e90612fcb565b62010d888111610c245760405162461bcd60e51b815260206004820152602f60248201527f53776170205468726573686f6c6420416d6f756e742063616e6e6f742062652060448201526e06c657373207468616e20363930303608c1b6064820152608401610a1e565b610c3281633b9aca00613051565b60185550565b6000546001600160a01b03163314610c625760405162461bcd60e51b8152600401610a1e90612fcb565b6001600160a01b03166000908152600960205260409020805460ff19166001179055565b6000600c54821115610ced5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610a1e565b6000610cf7611f6a565b9050610d038382611f8d565b9392505050565b6000546001600160a01b03163314610d345760405162461bcd60e51b8152600401610a1e90612fcb565b6001600160a01b03811660009081526007602052604090205460ff16610d9c5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a1e565b60005b600854811015610ebd57816001600160a01b031660088281548110610dc657610dc6613070565b6000918252602090912001546001600160a01b03161415610eab5760088054610df190600190613086565b81548110610e0157610e01613070565b600091825260209091200154600880546001600160a01b039092169183908110610e2d57610e2d613070565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610e8557610e8561309d565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610eb5816130b3565b915050610d9f565b5050565b3360008181526005602090815260408083206001600160a01b03871684529091528120549091610ae7918590610b819086611fcf565b6000546001600160a01b03163314610f215760405162461bcd60e51b8152600401610a1e90612fcb565b6040516370a0823160e01b81523060048201526001600160a01b0383169063a9059cbb90839083906370a082319060240160206040518083038186803b158015610f6a57600080fd5b505afa158015610f7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa291906130ce565b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b158015610fe857600080fd5b505af1158015610ffc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102091906130e7565b505050565b3360008181526007602052604090205460ff161561109a5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610a1e565b60006110a58361202e565b505050506001600160a01b0384166000908152600360205260409020549192506110d19190508261207d565b6001600160a01b038316600090815260036020526040902055600c546110f7908261207d565b600c55600d546111079084611fcf565b600d55505050565b6000546001600160a01b031633146111395760405162461bcd60e51b8152600401610a1e90612fcb565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600b548311156111b15760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610a1e565b816111d05760006111c18461202e565b50939550610aeb945050505050565b60006111db8461202e565b50929550610aeb945050505050565b6000546001600160a01b031633146112145760405162461bcd60e51b8152600401610a1e90612fcb565b600e546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561124d573d6000803e3d6000fd5b50565b6000546001600160a01b0316331461127a5760405162461bcd60e51b8152600401610a1e90612fcb565b6001600160a01b03811660009081526007602052604090205460ff16156112e35760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610a1e565b6001600160a01b0381166000908152600360205260409020541561133d576001600160a01b03811660009081526003602052604090205461132390610c86565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6000546001600160a01b031633146113cd5760405162461bcd60e51b8152600401610a1e90612fcb565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146114195760405162461bcd60e51b8152600401610a1e90612fcb565b60006012819055601455565b6001600160a01b03811660009081526007602052604081205460ff161561146257506001600160a01b031660009081526004602052604090205490565b6001600160a01b038216600090815260036020526040902054610aeb90610c86565b6000546001600160a01b031633146114ae5760405162461bcd60e51b8152600401610a1e90612fcb565b600080546040516001600160a01b0390911690600080516020613223833981519152908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146115105760405162461bcd60e51b8152600401610a1e90612fcb565b6040516001600160a01b038216904780156108fc02916000818181858888f19350505050158015610ebd573d6000803e3d6000fd5b6000546001600160a01b0316331461156f5760405162461bcd60e51b8152600401610a1e90612fcb565b6115776120bf565b61158f338361158a84633b9aca00613051565b611c7f565b610ebd601354601255601554601455565b606060108054610a5790613000565b6000610ae73384610b8185604051806060016040528060258152602001613243602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190611f30565b6000546001600160a01b031633146116285760405162461bcd60e51b8152600401610a1e90612fcb565b600a805461ff001916610100179055565b6001546001600160a01b0316331461169f5760405162461bcd60e51b815260206004820152602360248201527f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6044820152626f636b60e81b6064820152608401610a1e565b60025442116116f05760405162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c20372064617973006044820152606401610a1e565b600154600080546040516001600160a01b03938416939091169160008051602061322383398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610ae7338484611c7f565b6000546001600160a01b031633146117765760405162461bcd60e51b8152600401610a1e90612fcb565b6001601255600a601455565b6000546001600160a01b031633146117ac5760405162461bcd60e51b8152600401610a1e90612fcb565b601680548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906117f590831515815260200190565b60405180910390a150565b600e546001600160a01b0316331461181757600080fd5b60005b818110156110205760016009600085858581811061183a5761183a613070565b905060200201602081019061184f9190612d50565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055611880816130b3565b905061181a565b6000546001600160a01b031633146118b15760405162461bcd60e51b8152600401610a1e90612fcb565b60008382146119025760405162461bcd60e51b815260206004820152601760248201527f6d757374206265207468652073616d65206c656e6774680000000000000000006044820152606401610a1e565b838110156119735761196185858381811061191f5761191f613070565b90506020020160208101906119349190612d50565b84848481811061194657611946613070565b90506020020135633b9aca0061195c9190613051565b6120ed565b61196c600182613104565b9050611902565b5050505050565b6000546001600160a01b031633146119a45760405162461bcd60e51b8152600401610a1e90612fcb565b60008054600180546001600160a01b03199081166001600160a01b038416179091551690556119d38142613104565b600255600080546040516001600160a01b0390911690600080516020613223833981519152908390a350565b6000546001600160a01b03163314611a295760405162461bcd60e51b8152600401610a1e90612fcb565b682567ac70392b880000601755565b6000546001600160a01b03163314611a625760405162461bcd60e51b8152600401610a1e90612fcb565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6000546001600160a01b03163314611aad5760405162461bcd60e51b8152600401610a1e90612fcb565b6001600160a01b038116611b125760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a1e565b600080546040516001600160a01b038085169392169160008051602061322383398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611bbd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a1e565b6001600160a01b038216611c1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a1e565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611ce35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a1e565b6001600160a01b038216611d455760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a1e565b60008111611da75760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a1e565b6000546001600160a01b03848116911614801590611dd357506000546001600160a01b03838116911614155b15611e3b57601754811115611e3b5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a1e565b6000611e4630611425565b90506017548110611e5657506017545b60185481108015908190611e6d575060165460ff16155b8015611eab57507f000000000000000000000000ac0c097d523d2380419d402713d1f70d9989ae356001600160a01b0316856001600160a01b031614155b8015611ebe5750601654610100900460ff165b15611ed1576018549150611ed182612100565b6001600160a01b03851660009081526006602052604090205460019060ff1680611f1357506001600160a01b03851660009081526006602052604090205460ff165b15611f1c575060005b611f28868686846121ff565b505050505050565b60008184841115611f545760405162461bcd60e51b8152600401610a1e9190612d6d565b506000611f618486613086565b95945050505050565b6000806000611f7761243b565b9092509050611f868282611f8d565b9250505090565b6000610d0383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506125bd565b600080611fdc8385613104565b905083811015610d035760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a1e565b60008060008060008060008060006120458a6125eb565b92509250925060008060006120638d868661205e611f6a565b61262d565b919f909e50909c50959a5093985091965092945050505050565b6000610d0383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611f30565b6012541580156120cf5750601454155b156120d657565b601280546013556014805460155560009182905555565b6120f56120bf565b61158f338383611c7f565b6016805460ff19166001179055600061211a826002611f8d565b90506000612128838361207d565b9050476121348361267d565b6000612140478361207d565b9050600061215a6064612154846050612844565b90611f8d565b600e546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015612195573d6000803e3d6000fd5b506121a08183613086565b91506121ac84836128c3565b60408051868152602081018490529081018590527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a150506016805460ff1916905550505050565b600a54610100900460ff16612228576000546001600160a01b0385811691161461222857600080fd5b6001600160a01b03841660009081526009602052604090205460ff168061226757506001600160a01b03831660009081526009602052604090205460ff165b156122be57600a5460ff166122be5760405162461bcd60e51b815260206004820152601b60248201527f626f7473206172656e7420616c6c6f77656420746f20747261646500000000006044820152606401610a1e565b806122cb576122cb6120bf565b6001600160a01b03841660009081526007602052604090205460ff16801561230c57506001600160a01b03831660009081526007602052604090205460ff16155b156123215761231c8484846129d1565b61241f565b6001600160a01b03841660009081526007602052604090205460ff1615801561236257506001600160a01b03831660009081526007602052604090205460ff165b156123725761231c848484612af7565b6001600160a01b03841660009081526007602052604090205460ff161580156123b457506001600160a01b03831660009081526007602052604090205460ff16155b156123c45761231c848484612ba0565b6001600160a01b03841660009081526007602052604090205460ff16801561240457506001600160a01b03831660009081526007602052604090205460ff165b156124145761231c848484612be4565b61241f848484612ba0565b8061243557612435601354601255601554601455565b50505050565b600c54600b546000918291825b60085481101561258d5782600360006008848154811061246a5761246a613070565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806124d557508160046000600884815481106124ae576124ae613070565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156124eb57600c54600b54945094505050509091565b612531600360006008848154811061250557612505613070565b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061207d565b9250612579600460006008848154811061254d5761254d613070565b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061207d565b915080612585816130b3565b915050612448565b50600b54600c5461259d91611f8d565b8210156125b457600c54600b549350935050509091565b90939092509050565b600081836125de5760405162461bcd60e51b8152600401610a1e9190612d6d565b506000611f61848661311c565b6000806000806125fa85612c57565b9050600061260786612c73565b9050600061261f82612619898661207d565b9061207d565b979296509094509092505050565b600080808061263c8886612844565b9050600061264a8887612844565b905060006126588888612844565b9050600061266a82612619868661207d565b939b939a50919850919650505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106126b2576126b2613070565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561272b57600080fd5b505afa15801561273f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612763919061313e565b8160018151811061277657612776613070565b60200260200101906001600160a01b031690816001600160a01b0316815250506127c1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b5b565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061281690859060009086903090429060040161315b565b600060405180830381600087803b15801561283057600080fd5b505af1158015611f28573d6000803e3d6000fd5b60008261285357506000610aeb565b600061285f8385613051565b90508261286c858361311c565b14610d035760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a1e565b6128ee307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611b5b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806129356000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c4016060604051808303818588803b15801561299857600080fd5b505af11580156129ac573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061197391906131cc565b6000806000806000806129e38761202e565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612a15908861207d565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612a44908761207d565b6001600160a01b03808b1660009081526003602052604080822093909355908a1681522054612a739086611fcf565b6001600160a01b038916600090815260036020526040902055612a9581612c8f565b612a9f8483612d17565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051612ae491815260200190565b60405180910390a3505050505050505050565b600080600080600080612b098761202e565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612b3b908761207d565b6001600160a01b03808b16600090815260036020908152604080832094909455918b16815260049091522054612b719084611fcf565b6001600160a01b038916600090815260046020908152604080832093909355600390522054612a739086611fcf565b600080600080600080612bb28761202e565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612a44908761207d565b600080600080600080612bf68761202e565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612c28908861207d565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612b3b908761207d565b6000610aeb60646121546012548561284490919063ffffffff16565b6000610aeb60646121546014548561284490919063ffffffff16565b6000612c99611f6a565b90506000612ca78383612844565b30600090815260036020526040902054909150612cc49082611fcf565b3060009081526003602090815260408083209390935560079052205460ff16156110205730600090815260046020526040902054612d029084611fcf565b30600090815260046020526040902055505050565b600c54612d24908361207d565b600c55600d54612d349082611fcf565b600d555050565b6001600160a01b038116811461124d57600080fd5b600060208284031215612d6257600080fd5b8135610d0381612d3b565b600060208083528351808285015260005b81811015612d9a57858101830151858201604001528201612d7e565b81811115612dac576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612dd557600080fd5b8235612de081612d3b565b946020939093013593505050565b600080600060608486031215612e0357600080fd5b8335612e0e81612d3b565b92506020840135612e1e81612d3b565b929592945050506040919091013590565b600060208284031215612e4157600080fd5b5035919050565b60008060408385031215612e5b57600080fd5b8235612e6681612d3b565b91506020830135612e7681612d3b565b809150509250929050565b801515811461124d57600080fd5b60008060408385031215612ea257600080fd5b823591506020830135612e7681612e81565b600060208284031215612ec657600080fd5b8135610d0381612e81565b60008083601f840112612ee357600080fd5b50813567ffffffffffffffff811115612efb57600080fd5b6020830191508360208260051b8501011115612f1657600080fd5b9250929050565b60008060208385031215612f3057600080fd5b823567ffffffffffffffff811115612f4757600080fd5b612f5385828601612ed1565b90969095509350505050565b60008060008060408587031215612f7557600080fd5b843567ffffffffffffffff80821115612f8d57600080fd5b612f9988838901612ed1565b90965094506020870135915080821115612fb257600080fd5b50612fbf87828801612ed1565b95989497509550505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061301457607f821691505b6020821081141561303557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561306b5761306b61303b565b500290565b634e487b7160e01b600052603260045260246000fd5b6000828210156130985761309861303b565b500390565b634e487b7160e01b600052603160045260246000fd5b60006000198214156130c7576130c761303b565b5060010190565b6000602082840312156130e057600080fd5b5051919050565b6000602082840312156130f957600080fd5b8151610d0381612e81565b600082198211156131175761311761303b565b500190565b60008261313957634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561315057600080fd5b8151610d0381612d3b565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156131ab5784516001600160a01b031683529383019391830191600101613186565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156131e157600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63658be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220302844810bf52c40f1a04008f14ff966fd510563baccf4083318c2011816574464736f6c63430008090033
Deployed Bytecode Sourcemap
26723:21439:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36486:113;;;;;;;;;;-1:-1:-1;36486:113:0;;;;;:::i;:::-;;:::i;:::-;;29271:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30183:161;;;;;;;;;;-1:-1:-1;30183:161:0;;;;;:::i;:::-;;:::i;:::-;;;1489:14:1;;1482:22;1464:41;;1452:2;1437:18;30183:161:0;1324:187:1;40306:106:0;;;;;;;;;;;;;:::i;31304:87::-;;;;;;;;;;-1:-1:-1;31373:10:0;;31304:87;;;1662:25:1;;;1650:2;1635:18;31304:87:0;1516:177:1;27839:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;27839:51:0;1698:230:1;29548:95:0;;;;;;;;;;-1:-1:-1;29628:7:0;;29548:95;;30352:313;;;;;;;;;;-1:-1:-1;30352:313:0;;;;;:::i;:::-;;:::i;35363:258::-;;;;;;;;;;-1:-1:-1;35363:258:0;;;;;:::i;:::-;;:::i;36114:109::-;;;;;;;;;;-1:-1:-1;36114:109:0;;;;;:::i;:::-;;:::i;33024:253::-;;;;;;;;;;-1:-1:-1;33024:253:0;;;;;:::i;:::-;;:::i;27266:28::-;;;;;;;;;;-1:-1:-1;27266:28:0;;;;;;;;;;;29457:83;;;;;;;;;;-1:-1:-1;29523:9:0;;29457:83;;29523:9;;;;2721:36:1;;2709:2;2694:18;29457:83:0;2579:184:1;33740:479:0;;;;;;;;;;-1:-1:-1;33740:479:0;;;;;:::i;:::-;;:::i;30673:218::-;;;;;;;;;;-1:-1:-1;30673:218:0;;;;;:::i;:::-;;:::i;35761:185::-;;;;;;;;;;-1:-1:-1;35761:185:0;;;;;:::i;:::-;;:::i;27650:26::-;;;;;;;;;;;;;;;;32195:377;;;;;;;;;;-1:-1:-1;32195:377:0;;;;;:::i;:::-;;:::i;34883:111::-;;;;;;;;;;-1:-1:-1;34883:111:0;;;;;:::i;:::-;;:::i;32580:436::-;;;;;;;;;;-1:-1:-1;32580:436:0;;;;;:::i;:::-;;:::i;35633:116::-;;;;;;;;;;;;;:::i;27897:38::-;;;;;;;;;;;;;;;27976:40;;;;;;;;;;-1:-1:-1;27976:40:0;;;;;;;;;;;33285:447;;;;;;;;;;-1:-1:-1;33285:447:0;;;;;:::i;:::-;;:::i;40687:123::-;;;;;;;;;;-1:-1:-1;40687:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;40775:27:0;40751:4;40775:27;;;:18;:27;;;;;;;;;40687:123;35124:118;;;;;;;;;;-1:-1:-1;35124:118:0;;;;;:::i;:::-;;:::i;36611:121::-;;;;;;;;;;-1:-1:-1;36611:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;36703:21:0;36679:4;36703:21;;;:10;:21;;;;;;;;;36611:121;40195:103;;;;;;;;;;;;;:::i;27737:33::-;;;;;;;;;;;;;;;;29651:198;;;;;;;;;;-1:-1:-1;29651:198:0;;;;;:::i;:::-;;:::i;17318:148::-;;;;;;;;;;;;;:::i;27491:30::-;;;;;;;;;;-1:-1:-1;27491:30:0;;;;-1:-1:-1;;;;;27491:30:0;;;35958:144;;;;;;;;;;-1:-1:-1;35958:144:0;;;;;:::i;:::-;;:::i;28029:47::-;;;;;;;;;;;;;;;;31176:120;;;;;;;;;;-1:-1:-1;31176:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;31268:20:0;31244:4;31268:20;;;:11;:20;;;;;;;;;31176:120;31403:193;;;;;;;;;;-1:-1:-1;31403:193:0;;;;;:::i;:::-;;:::i;16675:79::-;;;;;;;;;;-1:-1:-1;16713:7:0;16740:6;-1:-1:-1;;;;;16740:6:0;16675:79;;29362:87;;;;;;;;;;;;;:::i;30899:269::-;;;;;;;;;;-1:-1:-1;30899:269:0;;;;;:::i;:::-;;:::i;36744:78::-;;;;;;;;;;;;;:::i;18340:305::-;;;;;;;;;;;;;:::i;29857:167::-;;;;;;;;;;-1:-1:-1;29857:167:0;;;;;:::i;:::-;;:::i;40428:106::-;;;;;;;;;;;;;:::i;17873:89::-;;;;;;;;;;-1:-1:-1;17945:9:0;;17873:89;;36830:171;;;;;;;;;;-1:-1:-1;36830:171:0;;;;;:::i;:::-;;:::i;36237:235::-;;;;;;;;;;-1:-1:-1;36237:235:0;;;;;:::i;:::-;;:::i;28084:64::-;;;;;;;;;;;;;;;;31801:386;;;;;;;;;;-1:-1:-1;31801:386:0;;;;;:::i;:::-;;:::i;18038:226::-;;;;;;;;;;-1:-1:-1;18038:226:0;;;;;:::i;:::-;;:::i;30032:143::-;;;;;;;;;;-1:-1:-1;30032:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;30140:18:0;;;30113:7;30140:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30032:143;35250:101;;;;;;;;;;;;;:::i;35006:110::-;;;;;;;;;;-1:-1:-1;35006:110:0;;;;;:::i;:::-;;:::i;17621:244::-;;;;;;;;;;-1:-1:-1;17621:244:0;;;;;:::i;:::-;;:::i;36486:113::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;36562:21:0::1;36586:5;36562:21:::0;;;:10:::1;:21;::::0;;;;:29;;-1:-1:-1;;36562:29:0::1;::::0;;36486:113::o;29271:83::-;29308:13;29341:5;29334:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29271:83;:::o;30183:161::-;30258:4;30275:39;9180:10;30298:7;30307:6;30275:8;:39::i;:::-;-1:-1:-1;30332:4:0;30183:161;;;;;:::o;40306:106::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;40375:1:::1;40365:7;:11:::0;40403:1:::1;40387:13;:17:::0;40306:106::o;30352:313::-;30450:4;30467:36;30477:6;30485:9;30496:6;30467:9;:36::i;:::-;30514:121;30523:6;9180:10;30545:89;30583:6;30545:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30545:19:0;;;;;;:11;:19;;;;;;;;9180:10;30545:33;;;;;;;;;;:37;:89::i;:::-;30514:8;:121::i;:::-;-1:-1:-1;30653:4:0;30352:313;;;;;:::o;35363:258::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;35486:5:::1;35464:19;:27;35456:87;;;::::0;-1:-1:-1;;;35456:87:0;;7258:2:1;35456:87:0::1;::::0;::::1;7240:21:1::0;7297:2;7277:18;;;7270:30;7336:34;7316:18;;;7309:62;-1:-1:-1;;;7387:18:1;;;7380:45;7442:19;;35456:87:0::1;7056:411:1::0;35456:87:0::1;35586:27;:19:::0;35608:5:::1;35586:27;:::i;:::-;35554:29;:59:::0;-1:-1:-1;35363:258:0:o;36114:109::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36187:21:0::1;;::::0;;;:10:::1;:21;::::0;;;;:28;;-1:-1:-1;;36187:28:0::1;36211:4;36187:28;::::0;;36114:109::o;33024:253::-;33090:7;33129;;33118;:18;;33110:73;;;;-1:-1:-1;;;33110:73:0;;7979:2:1;33110:73:0;;;7961:21:1;8018:2;7998:18;;;7991:30;8057:34;8037:18;;;8030:62;-1:-1:-1;;;8108:18:1;;;8101:40;8158:19;;33110:73:0;7777:406:1;33110:73:0;33194:19;33217:10;:8;:10::i;:::-;33194:33;-1:-1:-1;33245:24:0;:7;33194:33;33245:11;:24::i;:::-;33238:31;33024:253;-1:-1:-1;;;33024:253:0:o;33740:479::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33822:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33814:60;;;::::0;-1:-1:-1;;;33814:60:0;;8390:2:1;33814:60:0::1;::::0;::::1;8372:21:1::0;8429:2;8409:18;;;8402:30;8468:29;8448:18;;;8441:57;8515:18;;33814:60:0::1;8188:351:1::0;33814:60:0::1;33890:9;33885:327;33909:9;:16:::0;33905:20;::::1;33885:327;;;33967:7;-1:-1:-1::0;;;;;33951:23:0::1;:9;33961:1;33951:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33951:12:0::1;:23;33947:254;;;34010:9;34020:16:::0;;:20:::1;::::0;34039:1:::1;::::0;34020:20:::1;:::i;:::-;34010:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;33995:9:::1;:12:::0;;-1:-1:-1;;;;;34010:31:0;;::::1;::::0;34005:1;;33995:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33995:46:0::1;-1:-1:-1::0;;;;;33995:46:0;;::::1;;::::0;;34060:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;34099:11:::1;:20:::0;;;;:28;;-1:-1:-1;;34099:28:0::1;::::0;;34146:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34146:15:0;;;;;-1:-1:-1;;;;;;34146:15:0::1;::::0;;;;;33885:327:::1;33740:479:::0;:::o;33947:254::-:1;33927:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33885:327;;;;33740:479:::0;:::o;30673:218::-;9180:10;30761:4;30810:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30810:34:0;;;;;;;;;;30761:4;;30778:83;;30801:7;;30810:50;;30849:10;30810:38;:50::i;35761:185::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;35900:37:::1;::::0;-1:-1:-1;;;35900:37:0;;35931:4:::1;35900:37;::::0;::::1;1871:51:1::0;-1:-1:-1;;;;;35863:21:0;::::1;::::0;::::1;::::0;35885:13;;35863:21;;35900:22:::1;::::0;1844:18:1;;35900:37:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35863:75;::::0;-1:-1:-1;;;;;;35863:75:0::1;::::0;;;;;;-1:-1:-1;;;;;9459:32:1;;;35863:75:0::1;::::0;::::1;9441:51:1::0;9508:18;;;9501:34;9414:18;;35863:75:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35761:185:::0;;:::o;32195:377::-;9180:10;32247:14;32296:19;;;:11;:19;;;;;;;;32295:20;32287:77;;;;-1:-1:-1;;;32287:77:0;;9998:2:1;32287:77:0;;;9980:21:1;10037:2;10017:18;;;10010:30;10076:34;10056:18;;;10049:62;-1:-1:-1;;;10127:18:1;;;10120:42;10179:19;;32287:77:0;9796:408:1;32287:77:0;32376:15;32400:19;32411:7;32400:10;:19::i;:::-;-1:-1:-1;;;;;;;;;32448:15:0;;;;;;:7;:15;;;;;;32375:44;;-1:-1:-1;32448:28:0;;:15;-1:-1:-1;32375:44:0;32448:19;:28::i;:::-;-1:-1:-1;;;;;32430:15:0;;;;;;:7;:15;;;;;:46;32497:7;;:20;;32509:7;32497:11;:20::i;:::-;32487:7;:30;32541:10;;:23;;32556:7;32541:14;:23::i;:::-;32528:10;:36;-1:-1:-1;;;32195:377:0:o;34883:111::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34952:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;34952:34:0::1;34982:4;34952:34;::::0;;34883:111::o;32580:436::-;32670:7;32709;;32698;:18;;32690:62;;;;-1:-1:-1;;;32690:62:0;;10411:2:1;32690:62:0;;;10393:21:1;10450:2;10430:18;;;10423:30;10489:33;10469:18;;;10462:61;10540:18;;32690:62:0;10209:355:1;32690:62:0;32768:17;32763:246;;32803:15;32827:19;32838:7;32827:10;:19::i;:::-;-1:-1:-1;32802:44:0;;-1:-1:-1;32861:14:0;;-1:-1:-1;;;;;32861:14:0;32763:246;32910:23;32941:19;32952:7;32941:10;:19::i;:::-;-1:-1:-1;32908:52:0;;-1:-1:-1;32975:22:0;;-1:-1:-1;;;;;32975:22:0;35633:116;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;35693:15:::1;::::0;35685:56:::1;::::0;-1:-1:-1;;;;;35693:15:0;;::::1;::::0;35719:21:::1;35685:56:::0;::::1;;;::::0;35693:15:::1;35685:56:::0;35693:15;35685:56;35719:21;35693:15;35685:56;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;35633:116::o:0;33285:447::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33482:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33481:21;33473:61;;;::::0;-1:-1:-1;;;33473:61:0;;8390:2:1;33473:61:0::1;::::0;::::1;8372:21:1::0;8429:2;8409:18;;;8402:30;8468:29;8448:18;;;8441:57;8515:18;;33473:61:0::1;8188:351:1::0;33473:61:0::1;-1:-1:-1::0;;;;;33548:16:0;::::1;33567:1;33548:16:::0;;;:7:::1;:16;::::0;;;;;:20;33545:108:::1;;-1:-1:-1::0;;;;;33624:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33604:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33585:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33545:108:::1;-1:-1:-1::0;;;;;33663:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33663:27:0::1;33686:4;33663:27:::0;;::::1;::::0;;;33701:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33701:23:0::1;::::0;;::::1;::::0;;33285:447::o;35124:118::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;35203:15:::1;:31:::0;;-1:-1:-1;;;;;;35203:31:0::1;-1:-1:-1::0;;;;;35203:31:0;;;::::1;::::0;;;::::1;::::0;;35124:118::o;40195:103::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;40261:1:::1;40251:7;:11:::0;;;40273:13:::1;:17:::0;40195:103::o;29651:198::-;-1:-1:-1;;;;;29741:20:0;;29717:7;29741:20;;;:11;:20;;;;;;;;29737:49;;;-1:-1:-1;;;;;;29770:16:0;;;;;:7;:16;;;;;;;29651:198::o;29737:49::-;-1:-1:-1;;;;;29824:16:0;;;;;;:7;:16;;;;;;29804:37;;:19;:37::i;17318:148::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;17425:1:::1;17409:6:::0;;17388:40:::1;::::0;-1:-1:-1;;;;;17409:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;17388:40:0;17425:1;;17388:40:::1;17456:1;17439:19:::0;;-1:-1:-1;;;;;;17439:19:0::1;::::0;;17318:148::o;35958:144::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;36049:45:::1;::::0;-1:-1:-1;;;;;36049:22:0;::::1;::::0;36072:21:::1;36049:45:::0;::::1;;;::::0;::::1;::::0;;;36072:21;36049:22;:45;::::1;;;;;;;;;;;;;::::0;::::1;;;;31403:193:::0;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;31487:14:::1;:12;:14::i;:::-;31512:50;9180:10:::0;31536:9;31547:14:::1;:6:::0;31556:5:::1;31547:14;:::i;:::-;31512:9;:50::i;:::-;31573:15;40604::::0;;40594:7;:25;40646:21;;40630:13;:37;40550:125;29362:87;29401:13;29434:7;29427:14;;;;;:::i;30899:269::-;30992:4;31009:129;9180:10;31032:7;31041:96;31080:15;31041:96;;;;;;;;;;;;;;;;;9180:10;31041:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;31041:34:0;;;;;;;;;;;;:38;:96::i;36744:78::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;36799:8:::1;:15:::0;;-1:-1:-1;;36799:15:0::1;;;::::0;;36744:78::o;18340:305::-;18392:14;;-1:-1:-1;;;;;18392:14:0;18410:10;18392:28;18384:76;;;;-1:-1:-1;;;18384:76:0;;10771:2:1;18384:76:0;;;10753:21:1;10810:2;10790:18;;;10783:30;10849:34;10829:18;;;10822:62;-1:-1:-1;;;10900:18:1;;;10893:33;10943:19;;18384:76:0;10569:399:1;18384:76:0;18497:9;;18479:15;:27;18471:72;;;;-1:-1:-1;;;18471:72:0;;11175:2:1;18471:72:0;;;11157:21:1;11214:2;11194:18;;;11187:30;11253:33;11233:18;;;11226:61;11304:18;;18471:72:0;10973:355:1;18471:72:0;18588:14;;;18580:6;;18559:44;;-1:-1:-1;;;;;18588:14:0;;;;18580:6;;;;-1:-1:-1;;;;;;;;;;;18559:44:0;;18623:14;;;18614:23;;-1:-1:-1;;;;;;18614:23:0;-1:-1:-1;;;;;18623:14:0;;;18614:23;;;;;;18340:305::o;29857:167::-;29935:4;29952:42;9180:10;29976:9;29987:6;29952:9;:42::i;40428:106::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;40496:1:::1;40486:7;:11:::0;40524:2:::1;40508:13;:18:::0;40428:106::o;36830:171::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;36907:21:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;36907:32:0;;::::1;;::::0;;36955:38:::1;::::0;::::1;::::0;::::1;::::0;36931:8;1489:14:1;1482:22;1464:41;;1452:2;1437:18;;1324:187;36955:38:0::1;;;;;;;;36830:171:::0;:::o;36237:235::-;36336:15;;-1:-1:-1;;;;;36336:15:0;36322:10;:29;36313:40;;;;;;36369:9;36364:99;36380:20;;;36364:99;;;36447:4;36420:10;:24;36431:9;;36441:1;36431:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;36420:24:0;;;;;;;;;;;;-1:-1:-1;36420:24:0;:31;;-1:-1:-1;;36420:31:0;;;;;;;;;;36402:3;;;:::i;:::-;;;36364:99;;31801:386;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;31913:16:::1;31952:35:::0;;::::1;31944:71;;;::::0;-1:-1:-1;;;31944:71:0;;11535:2:1;31944:71:0::1;::::0;::::1;11517:21:1::0;11574:2;11554:18;;;11547:30;11613:25;11593:18;;;11586:53;11656:18;;31944:71:0::1;11333:347:1::0;31944:71:0::1;32032:28:::0;;::::1;32026:154;;;32076:64;32092:10;;32103:8;32092:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;32114:7;;32122:8;32114:17;;;;;;;:::i;:::-;;;;;;;32134:5;32114:25;;;;:::i;:::-;32076:15;:64::i;:::-;32155:13;32167:1;32155:13:::0;::::1;:::i;:::-;;;32026:154;;;31902:285;31801:386:::0;;;;:::o;18038:226::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;18119:6:::1;::::0;;;18102:23;;-1:-1:-1;;;;;;18102:23:0;;::::1;-1:-1:-1::0;;;;;18119:6:0;::::1;18102:23;::::0;;;18136:19:::1;::::0;;18178:22:::1;18196:4:::0;18178:15:::1;:22;:::i;:::-;18166:9;:34:::0;18253:1:::1;18237:6:::0;;18216:40:::1;::::0;-1:-1:-1;;;;;18237:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;18216:40:0;18253:1;;18216:40:::1;18038:226:::0;:::o;35250:101::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;35323:20:::1;35308:12;:35:::0;35250:101::o;35006:110::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35073:27:0::1;35103:5;35073:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;35073:35:0::1;::::0;;35006:110::o;17621:244::-;16887:6;;-1:-1:-1;;;;;16887:6:0;9180:10;16887:22;16879:67;;;;-1:-1:-1;;;16879:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17710:22:0;::::1;17702:73;;;::::0;-1:-1:-1;;;17702:73:0;;12020:2:1;17702:73:0::1;::::0;::::1;12002:21:1::0;12059:2;12039:18;;;12032:30;12098:34;12078:18;;;12071:62;-1:-1:-1;;;12149:18:1;;;12142:36;12195:19;;17702:73:0::1;11818:402:1::0;17702:73:0::1;17812:6;::::0;;17791:38:::1;::::0;-1:-1:-1;;;;;17791:38:0;;::::1;::::0;17812:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;17791:38:0;::::1;17840:6;:17:::0;;-1:-1:-1;;;;;;17840:17:0::1;-1:-1:-1::0;;;;;17840:17:0;;;::::1;::::0;;;::::1;::::0;;17621:244::o;40818:337::-;-1:-1:-1;;;;;40911:19:0;;40903:68;;;;-1:-1:-1;;;40903:68:0;;12427:2:1;40903:68:0;;;12409:21:1;12466:2;12446:18;;;12439:30;12505:34;12485:18;;;12478:62;-1:-1:-1;;;12556:18:1;;;12549:34;12600:19;;40903:68:0;12225:400:1;40903:68:0;-1:-1:-1;;;;;40990:21:0;;40982:68;;;;-1:-1:-1;;;40982:68:0;;12832:2:1;40982:68:0;;;12814:21:1;12871:2;12851:18;;;12844:30;12910:34;12890:18;;;12883:62;-1:-1:-1;;;12961:18:1;;;12954:32;13003:19;;40982:68:0;12630:398:1;40982:68:0;-1:-1:-1;;;;;41063:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;41115:32;;1662:25:1;;;41115:32:0;;1635:18:1;41115:32:0;;;;;;;40818:337;;;:::o;41163:1813::-;-1:-1:-1;;;;;41285:18:0;;41277:68;;;;-1:-1:-1;;;41277:68:0;;13235:2:1;41277:68:0;;;13217:21:1;13274:2;13254:18;;;13247:30;13313:34;13293:18;;;13286:62;-1:-1:-1;;;13364:18:1;;;13357:35;13409:19;;41277:68:0;13033:401:1;41277:68:0;-1:-1:-1;;;;;41364:16:0;;41356:64;;;;-1:-1:-1;;;41356:64:0;;13641:2:1;41356:64:0;;;13623:21:1;13680:2;13660:18;;;13653:30;13719:34;13699:18;;;13692:62;-1:-1:-1;;;13770:18:1;;;13763:33;13813:19;;41356:64:0;13439:399:1;41356:64:0;41448:1;41439:6;:10;41431:64;;;;-1:-1:-1;;;41431:64:0;;14045:2:1;41431:64:0;;;14027:21:1;14084:2;14064:18;;;14057:30;14123:34;14103:18;;;14096:62;-1:-1:-1;;;14174:18:1;;;14167:39;14223:19;;41431:64:0;13843:405:1;41431:64:0;16713:7;16740:6;-1:-1:-1;;;;;41509:15:0;;;16740:6;;41509:15;;;;:32;;-1:-1:-1;16713:7:0;16740:6;-1:-1:-1;;;;;41528:13:0;;;16740:6;;41528:13;;41509:32;41506:125;;;41574:12;;41564:6;:22;;41556:75;;;;-1:-1:-1;;;41556:75:0;;14455:2:1;41556:75:0;;;14437:21:1;14494:2;14474:18;;;14467:30;14533:34;14513:18;;;14506:62;-1:-1:-1;;;14584:18:1;;;14577:38;14632:19;;41556:75:0;14253:404:1;41556:75:0;41926:28;41957:24;41975:4;41957:9;:24::i;:::-;41926:55;;42029:12;;42005:20;:36;42002:112;;-1:-1:-1;42090:12:0;;42002:112;42185:29;;42161:53;;;;;;;42243;;-1:-1:-1;42280:16:0;;;;42279:17;42243:53;:91;;;;;42321:13;-1:-1:-1;;;;;42313:21:0;:4;-1:-1:-1;;;;;42313:21:0;;;42243:91;:129;;;;-1:-1:-1;42351:21:0;;;;;;;42243:129;42225:318;;;42422:29;;42399:52;;42495:36;42510:20;42495:14;:36::i;:::-;-1:-1:-1;;;;;42751:24:0;;42624:12;42751:24;;;:18;:24;;;;;;42639:4;;42751:24;;;:50;;-1:-1:-1;;;;;;42779:22:0;;;;;;:18;:22;;;;;;;;42751:50;42748:96;;;-1:-1:-1;42827:5:0;42748:96;42930:38;42945:4;42950:2;42953:6;42960:7;42930:14;:38::i;:::-;41266:1710;;;41163:1813;;;:::o;5431:192::-;5517:7;5553:12;5545:6;;;;5537:29;;;;-1:-1:-1;;;5537:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5577:9:0;5589:5;5593:1;5589;:5;:::i;:::-;5577:17;5431:192;-1:-1:-1;;;;;5431:192:0:o;38478:163::-;38519:7;38540:15;38557;38576:19;:17;:19::i;:::-;38539:56;;-1:-1:-1;38539:56:0;-1:-1:-1;38613:20:0;38539:56;;38613:11;:20::i;:::-;38606:27;;;;38478:163;:::o;6829:132::-;6887:7;6914:39;6918:1;6921;6914:39;;;;;;;;;;;;;;;;;:3;:39::i;4528:181::-;4586:7;;4618:5;4622:1;4618;:5;:::i;:::-;4606:17;;4647:1;4642;:6;;4634:46;;;;-1:-1:-1;;;4634:46:0;;14864:2:1;4634:46:0;;;14846:21:1;14903:2;14883:18;;;14876:30;14942:29;14922:18;;;14915:57;14989:18;;4634:46:0;14662:351:1;37276:419:0;37335:7;37344;37353;37362;37371;37380;37401:23;37426:12;37440:18;37462:20;37474:7;37462:11;:20::i;:::-;37400:82;;;;;;37494:15;37511:23;37536:12;37552:50;37564:7;37573:4;37579:10;37591;:8;:10::i;:::-;37552:11;:50::i;:::-;37493:109;;;;-1:-1:-1;37493:109:0;;-1:-1:-1;37653:15:0;;-1:-1:-1;37670:4:0;;-1:-1:-1;37676:10:0;;-1:-1:-1;37276:419:0;;-1:-1:-1;;;;;37276:419:0:o;4992:136::-;5050:7;5077:43;5081:1;5084;5077:43;;;;;;;;;;;;;;;;;:3;:43::i;39929:250::-;39975:7;;:12;:34;;;;-1:-1:-1;39991:13:0;;:18;39975:34;39972:46;;;39929:250::o;39972:46::-;40056:7;;;40038:15;:25;40098:13;;;40074:21;:37;-1:-1:-1;40132:11:0;;;;40154:17;39929:250::o;31608:181::-;31688:14;:12;:14::i;:::-;31713:42;9180:10;31737:9;31748:6;31713:9;:42::i;42984:1182::-;28455:16;:23;;-1:-1:-1;;28455:23:0;28474:4;28455:23;;;:16;43172:27:::1;:20:::0;43197:1:::1;43172:24;:27::i;:::-;43157:42:::0;-1:-1:-1;43210:17:0::1;43230:30;:20:::0;43157:42;43230:24:::1;:30::i;:::-;43210:50:::0;-1:-1:-1;43563:21:0::1;43629:22;43646:4:::0;43629:16:::1;:22::i;:::-;43782:18;43803:41;:21;43829:14:::0;43803:25:::1;:41::i;:::-;43782:62:::0;-1:-1:-1;43855:22:0::1;43880:27;43903:3;43880:18;43782:62:::0;43895:2:::1;43880:14;:18::i;:::-;:22:::0;::::1;:27::i;:::-;43926:15;::::0;43918:49:::1;::::0;43855:52;;-1:-1:-1;;;;;;43926:15:0::1;::::0;43918:49;::::1;;;::::0;43855:52;;43926:15:::1;43918:49:::0;43926:15;43918:49;43855:52;43926:15;43918:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;43978:28:0::1;43992:14:::0;43978:28;::::1;:::i;:::-;;;44054:35;44067:9;44078:10;44054:12;:35::i;:::-;44115:43;::::0;;15220:25:1;;;15276:2;15261:18;;15254:34;;;15304:18;;;15297:34;;;44115:43:0::1;::::0;15208:2:1;15193:18;44115:43:0::1;;;;;;;-1:-1:-1::0;;28501:16:0;:24;;-1:-1:-1;;28501:24:0;;;-1:-1:-1;;;;42984:1182:0:o;45365:1114::-;45476:8;;;;;;;45472:114;;16713:7;16740:6;-1:-1:-1;;;;;45508:17:0;;;16740:6;;45508:17;45500:26;;;;;;-1:-1:-1;;;;;45609:18:0;;;;;;:10;:18;;;;;;;;;:43;;-1:-1:-1;;;;;;45631:21:0;;;;;;:10;:21;;;;;;;;45609:43;45606:126;;;45676:12;;;;45668:52;;;;-1:-1:-1;;;45668:52:0;;15544:2:1;45668:52:0;;;15526:21:1;15583:2;15563:18;;;15556:30;15622:29;15602:18;;;15595:57;15669:18;;45668:52:0;15342:351:1;45668:52:0;45756:7;45752:40;;45778:14;:12;:14::i;:::-;-1:-1:-1;;;;;45817:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45841:22:0;;;;;;:11;:22;;;;;;;;45840:23;45817:46;45813:597;;;45880:48;45902:6;45910:9;45921:6;45880:21;:48::i;:::-;45813:597;;;-1:-1:-1;;;;;45951:19:0;;;;;;:11;:19;;;;;;;;45950:20;:46;;;;-1:-1:-1;;;;;;45974:22:0;;;;;;:11;:22;;;;;;;;45950:46;45946:464;;;46013:46;46033:6;46041:9;46052:6;46013:19;:46::i;45946:464::-;-1:-1:-1;;;;;46082:19:0;;;;;;:11;:19;;;;;;;;46081:20;:47;;;;-1:-1:-1;;;;;;46106:22:0;;;;;;:11;:22;;;;;;;;46105:23;46081:47;46077:333;;;46145:44;46163:6;46171:9;46182:6;46145:17;:44::i;46077:333::-;-1:-1:-1;;;;;46211:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;46234:22:0;;;;;;:11;:22;;;;;;;;46211:45;46207:203;;;46273:48;46295:6;46303:9;46314:6;46273:21;:48::i;46207:203::-;46354:44;46372:6;46380:9;46391:6;46354:17;:44::i;:::-;46434:7;46430:41;;46456:15;40604;;40594:7;:25;40646:21;;40630:13;:37;40550:125;46456:15;45365:1114;;;;:::o;38649:561::-;38746:7;;38782;;38699;;;;;38806:289;38830:9;:16;38826:20;;38806:289;;;38896:7;38872;:21;38880:9;38890:1;38880:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38880:12:0;38872:21;;;;;;;;;;;;;:31;;:66;;;38931:7;38907;:21;38915:9;38925:1;38915:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38915:12:0;38907:21;;;;;;;;;;;;;:31;38872:66;38868:97;;;38948:7;;38957;;38940:25;;;;;;;38649:561;;:::o;38868:97::-;38990:34;39002:7;:21;39010:9;39020:1;39010:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;39010:12:0;39002:21;;;;;;;;;;;;;38990:7;;:11;:34::i;:::-;38980:44;;39049:34;39061:7;:21;39069:9;39079:1;39069:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;39069:12:0;39061:21;;;;;;;;;;;;;39049:7;;:11;:34::i;:::-;39039:44;-1:-1:-1;38848:3:0;;;;:::i;:::-;;;;38806:289;;;-1:-1:-1;39131:7:0;;39119;;:20;;:11;:20::i;:::-;39109:7;:30;39105:61;;;39149:7;;39158;;39141:25;;;;;;38649:561;;:::o;39105:61::-;39185:7;;39194;;-1:-1:-1;38649:561:0;-1:-1:-1;38649:561:0:o;7457:278::-;7543:7;7578:12;7571:5;7563:28;;;;-1:-1:-1;;;7563:28:0;;;;;;;;:::i;:::-;-1:-1:-1;7602:9:0;7614:5;7618:1;7614;:5;:::i;37703:330::-;37763:7;37772;37781;37801:12;37816:24;37832:7;37816:15;:24::i;:::-;37801:39;;37851:18;37872:30;37894:7;37872:21;:30::i;:::-;37851:51;-1:-1:-1;37913:23:0;37939:33;37851:51;37939:17;:7;37951:4;37939:11;:17::i;:::-;:21;;:33::i;:::-;37913:59;38008:4;;-1:-1:-1;38014:10:0;;-1:-1:-1;37703:330:0;;-1:-1:-1;;;37703:330:0:o;38041:429::-;38156:7;;;;38212:24;:7;38224:11;38212;:24::i;:::-;38194:42;-1:-1:-1;38247:12:0;38262:21;:4;38271:11;38262:8;:21::i;:::-;38247:36;-1:-1:-1;38294:18:0;38315:27;:10;38330:11;38315:14;:27::i;:::-;38294:48;-1:-1:-1;38353:23:0;38379:33;38294:48;38379:17;:7;38391:4;38379:11;:17::i;:33::-;38431:7;;;;-1:-1:-1;38457:4:0;;-1:-1:-1;38041:429:0;;-1:-1:-1;;;;;;;38041:429:0:o;44174:589::-;44324:16;;;44338:1;44324:16;;;;;;;;44300:21;;44324:16;;;;;;;;;;-1:-1:-1;44324:16:0;44300:40;;44369:4;44351;44356:1;44351:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44351:23:0;;;-1:-1:-1;;;;;44351:23:0;;;;;44395:15;-1:-1:-1;;;;;44395:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44385:4;44390:1;44385:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44385:32:0;;;-1:-1:-1;;;;;44385:32:0;;;;;44430:62;44447:4;44462:15;44480:11;44430:8;:62::i;:::-;44531:224;;-1:-1:-1;;;44531:224:0;;-1:-1:-1;;;;;44531:15:0;:66;;;;:224;;44612:11;;44638:1;;44682:4;;44709;;44729:15;;44531:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5882:471;5940:7;6185:6;6181:47;;-1:-1:-1;6215:1:0;6208:8;;6181:47;6240:9;6252:5;6256:1;6252;:5;:::i;:::-;6240:17;-1:-1:-1;6285:1:0;6276:5;6280:1;6240:17;6276:5;:::i;:::-;:10;6268:56;;;;-1:-1:-1;;;6268:56:0;;17495:2:1;6268:56:0;;;17477:21:1;17534:2;17514:18;;;17507:30;17573:34;17553:18;;;17546:62;-1:-1:-1;;;17624:18:1;;;17617:31;17665:19;;6268:56:0;17293:397:1;44771:513:0;44919:62;44936:4;44951:15;44969:11;44919:8;:62::i;:::-;45024:15;-1:-1:-1;;;;;45024:31:0;;45063:9;45096:4;45116:11;45142:1;45185;45228:7;16713;16740:6;-1:-1:-1;;;;;16740:6:0;;16675:79;45228:7;45024:252;;;;;;-1:-1:-1;;;;;;45024:252:0;;;-1:-1:-1;;;;;18054:15:1;;;45024:252:0;;;18036:34:1;18086:18;;;18079:34;;;;18129:18;;;18122:34;;;;18172:18;;;18165:34;18236:15;;;18215:19;;;18208:44;45250:15:0;18268:19:1;;;18261:35;17970:19;;45024:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;47591:566::-;47694:15;47711:23;47736:12;47750:23;47775:12;47789:18;47811:19;47822:7;47811:10;:19::i;:::-;-1:-1:-1;;;;;47859:15:0;;;;;;:7;:15;;;;;;47693:137;;-1:-1:-1;47693:137:0;;-1:-1:-1;47693:137:0;;-1:-1:-1;47693:137:0;-1:-1:-1;47693:137:0;-1:-1:-1;47693:137:0;-1:-1:-1;47859:28:0;;47879:7;47859:19;:28::i;:::-;-1:-1:-1;;;;;47841:15:0;;;;;;:7;:15;;;;;;;;:46;;;;47916:7;:15;;;;:28;;47936:7;47916:19;:28::i;:::-;-1:-1:-1;;;;;47898:15:0;;;;;;;:7;:15;;;;;;:46;;;;47976:18;;;;;;;:39;;47999:15;47976:22;:39::i;:::-;-1:-1:-1;;;;;47955:18:0;;;;;;:7;:18;;;;;:60;48029:26;48044:10;48029:14;:26::i;:::-;48066:23;48078:4;48084;48066:11;:23::i;:::-;48122:9;-1:-1:-1;;;;;48105:44:0;48114:6;-1:-1:-1;;;;;48105:44:0;;48133:15;48105:44;;;;1662:25:1;;1650:2;1635:18;;1516:177;48105:44:0;;;;;;;;47682:475;;;;;;47591:566;;;:::o;46997:586::-;47098:15;47115:23;47140:12;47154:23;47179:12;47193:18;47215:19;47226:7;47215:10;:19::i;:::-;-1:-1:-1;;;;;47263:15:0;;;;;;:7;:15;;;;;;47097:137;;-1:-1:-1;47097:137:0;;-1:-1:-1;47097:137:0;;-1:-1:-1;47097:137:0;-1:-1:-1;47097:137:0;-1:-1:-1;47097:137:0;-1:-1:-1;47263:28:0;;47097:137;47263:19;:28::i;:::-;-1:-1:-1;;;;;47245:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;47323:18;;;;;:7;:18;;;;;:39;;47346:15;47323:22;:39::i;:::-;-1:-1:-1;;;;;47302:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47394:7;:18;;;;:39;;47417:15;47394:22;:39::i;46487:502::-;46586:15;46603:23;46628:12;46642:23;46667:12;46681:18;46703:19;46714:7;46703:10;:19::i;:::-;-1:-1:-1;;;;;46751:15:0;;;;;;:7;:15;;;;;;46585:137;;-1:-1:-1;46585:137:0;;-1:-1:-1;46585:137:0;;-1:-1:-1;46585:137:0;-1:-1:-1;46585:137:0;-1:-1:-1;46585:137:0;-1:-1:-1;46751:28:0;;46585:137;46751:19;:28::i;34229:642::-;34332:15;34349:23;34374:12;34388:23;34413:12;34427:18;34449:19;34460:7;34449:10;:19::i;:::-;-1:-1:-1;;;;;34497:15:0;;;;;;:7;:15;;;;;;34331:137;;-1:-1:-1;34331:137:0;;-1:-1:-1;34331:137:0;;-1:-1:-1;34331:137:0;-1:-1:-1;34331:137:0;-1:-1:-1;34331:137:0;-1:-1:-1;34497:28:0;;34517:7;34497:19;:28::i;:::-;-1:-1:-1;;;;;34479:15:0;;;;;;:7;:15;;;;;;;;:46;;;;34554:7;:15;;;;:28;;34574:7;34554:19;:28::i;39589:154::-;39653:7;39680:55;39719:5;39680:20;39692:7;;39680;:11;;:20;;;;:::i;39751:166::-;39821:7;39848:61;39893:5;39848:26;39860:13;;39848:7;:11;;:26;;;;:::i;39222:355::-;39285:19;39308:10;:8;:10::i;:::-;39285:33;-1:-1:-1;39329:18:0;39350:27;:10;39285:33;39350:14;:27::i;:::-;39429:4;39413:22;;;;:7;:22;;;;;;39329:48;;-1:-1:-1;39413:38:0;;39329:48;39413:26;:38::i;:::-;39404:4;39388:22;;;;:7;:22;;;;;;;;:63;;;;39465:11;:26;;;;;;39462:107;;;39547:4;39531:22;;;;:7;:22;;;;;;:38;;39558:10;39531:26;:38::i;:::-;39522:4;39506:22;;;;:7;:22;;;;;:63;39274:303;;39222:355;:::o;37121:147::-;37199:7;;:17;;37211:4;37199:11;:17::i;:::-;37189:7;:27;37240:10;;:20;;37255:4;37240:14;:20::i;:::-;37227:10;:33;-1:-1:-1;;37121:147:0:o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;402:597::-;514:4;543:2;572;561:9;554:21;604:6;598:13;647:6;642:2;631:9;627:18;620:34;672:1;682:140;696:6;693:1;690:13;682:140;;;791:14;;;787:23;;781:30;757:17;;;776:2;753:26;746:66;711:10;;682:140;;;840:6;837:1;834:13;831:91;;;910:1;905:2;896:6;885:9;881:22;877:31;870:42;831:91;-1:-1:-1;983:2:1;962:15;-1:-1:-1;;958:29:1;943:45;;;;990:2;939:54;;402:597;-1:-1:-1;;;402:597:1:o;1004:315::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:52;;;1149:1;1146;1139:12;1101:52;1188:9;1175:23;1207:31;1232:5;1207:31;:::i;:::-;1257:5;1309:2;1294:18;;;;1281:32;;-1:-1:-1;;;1004:315:1:o;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2394:180::-;2453:6;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;-1:-1:-1;2545:23:1;;2394:180;-1:-1:-1;2394:180:1:o;2768:401::-;2849:6;2857;2910:2;2898:9;2889:7;2885:23;2881:32;2878:52;;;2926:1;2923;2916:12;2878:52;2965:9;2952:23;2984:31;3009:5;2984:31;:::i;:::-;3034:5;-1:-1:-1;3091:2:1;3076:18;;3063:32;3104:33;3063:32;3104:33;:::i;:::-;3156:7;3146:17;;;2768:401;;;;;:::o;3174:118::-;3260:5;3253:13;3246:21;3239:5;3236:32;3226:60;;3282:1;3279;3272:12;3297:309;3362:6;3370;3423:2;3411:9;3402:7;3398:23;3394:32;3391:52;;;3439:1;3436;3429:12;3391:52;3475:9;3462:23;3452:33;;3535:2;3524:9;3520:18;3507:32;3548:28;3570:5;3548:28;:::i;4079:241::-;4135:6;4188:2;4176:9;4167:7;4163:23;4159:32;4156:52;;;4204:1;4201;4194:12;4156:52;4243:9;4230:23;4262:28;4284:5;4262:28;:::i;4325:367::-;4388:8;4398:6;4452:3;4445:4;4437:6;4433:17;4429:27;4419:55;;4470:1;4467;4460:12;4419:55;-1:-1:-1;4493:20:1;;4536:18;4525:30;;4522:50;;;4568:1;4565;4558:12;4522:50;4605:4;4597:6;4593:17;4581:29;;4665:3;4658:4;4648:6;4645:1;4641:14;4633:6;4629:27;4625:38;4622:47;4619:67;;;4682:1;4679;4672:12;4619:67;4325:367;;;;;:::o;4697:437::-;4783:6;4791;4844:2;4832:9;4823:7;4819:23;4815:32;4812:52;;;4860:1;4857;4850:12;4812:52;4900:9;4887:23;4933:18;4925:6;4922:30;4919:50;;;4965:1;4962;4955:12;4919:50;5004:70;5066:7;5057:6;5046:9;5042:22;5004:70;:::i;:::-;5093:8;;4978:96;;-1:-1:-1;4697:437:1;-1:-1:-1;;;;4697:437:1:o;5139:773::-;5261:6;5269;5277;5285;5338:2;5326:9;5317:7;5313:23;5309:32;5306:52;;;5354:1;5351;5344:12;5306:52;5394:9;5381:23;5423:18;5464:2;5456:6;5453:14;5450:34;;;5480:1;5477;5470:12;5450:34;5519:70;5581:7;5572:6;5561:9;5557:22;5519:70;:::i;:::-;5608:8;;-1:-1:-1;5493:96:1;-1:-1:-1;5696:2:1;5681:18;;5668:32;;-1:-1:-1;5712:16:1;;;5709:36;;;5741:1;5738;5731:12;5709:36;;5780:72;5844:7;5833:8;5822:9;5818:24;5780:72;:::i;:::-;5139:773;;;;-1:-1:-1;5871:8:1;-1:-1:-1;;;;5139:773:1:o;6310:356::-;6512:2;6494:21;;;6531:18;;;6524:30;6590:34;6585:2;6570:18;;6563:62;6657:2;6642:18;;6310:356::o;6671:380::-;6750:1;6746:12;;;;6793;;;6814:61;;6868:4;6860:6;6856:17;6846:27;;6814:61;6921:2;6913:6;6910:14;6890:18;6887:38;6884:161;;;6967:10;6962:3;6958:20;6955:1;6948:31;7002:4;6999:1;6992:15;7030:4;7027:1;7020:15;6884:161;;6671:380;;;:::o;7472:127::-;7533:10;7528:3;7524:20;7521:1;7514:31;7564:4;7561:1;7554:15;7588:4;7585:1;7578:15;7604:168;7644:7;7710:1;7706;7702:6;7698:14;7695:1;7692:21;7687:1;7680:9;7673:17;7669:45;7666:71;;;7717:18;;:::i;:::-;-1:-1:-1;7757:9:1;;7604:168::o;8544:127::-;8605:10;8600:3;8596:20;8593:1;8586:31;8636:4;8633:1;8626:15;8660:4;8657:1;8650:15;8676:125;8716:4;8744:1;8741;8738:8;8735:34;;;8749:18;;:::i;:::-;-1:-1:-1;8786:9:1;;8676:125::o;8806:127::-;8867:10;8862:3;8858:20;8855:1;8848:31;8898:4;8895:1;8888:15;8922:4;8919:1;8912:15;8938:135;8977:3;-1:-1:-1;;8998:17:1;;8995:43;;;9018:18;;:::i;:::-;-1:-1:-1;9065:1:1;9054:13;;8938:135::o;9078:184::-;9148:6;9201:2;9189:9;9180:7;9176:23;9172:32;9169:52;;;9217:1;9214;9207:12;9169:52;-1:-1:-1;9240:16:1;;9078:184;-1:-1:-1;9078:184:1:o;9546:245::-;9613:6;9666:2;9654:9;9645:7;9641:23;9637:32;9634:52;;;9682:1;9679;9672:12;9634:52;9714:9;9708:16;9733:28;9755:5;9733:28;:::i;11685:128::-;11725:3;11756:1;11752:6;11749:1;11746:13;11743:39;;;11762:18;;:::i;:::-;-1:-1:-1;11798:9:1;;11685:128::o;15698:217::-;15738:1;15764;15754:132;;15808:10;15803:3;15799:20;15796:1;15789:31;15843:4;15840:1;15833:15;15871:4;15868:1;15861:15;15754:132;-1:-1:-1;15900:9:1;;15698:217::o;16052:251::-;16122:6;16175:2;16163:9;16154:7;16150:23;16146:32;16143:52;;;16191:1;16188;16181:12;16143:52;16223:9;16217:16;16242:31;16267:5;16242:31;:::i;16308:980::-;16570:4;16618:3;16607:9;16603:19;16649:6;16638:9;16631:25;16675:2;16713:6;16708:2;16697:9;16693:18;16686:34;16756:3;16751:2;16740:9;16736:18;16729:31;16780:6;16815;16809:13;16846:6;16838;16831:22;16884:3;16873:9;16869:19;16862:26;;16923:2;16915:6;16911:15;16897:29;;16944:1;16954:195;16968:6;16965:1;16962:13;16954:195;;;17033:13;;-1:-1:-1;;;;;17029:39:1;17017:52;;17124:15;;;;17089:12;;;;17065:1;16983:9;16954:195;;;-1:-1:-1;;;;;;;17205:32:1;;;;17200:2;17185:18;;17178:60;-1:-1:-1;;;17269:3:1;17254:19;17247:35;17166:3;16308:980;-1:-1:-1;;;16308:980:1:o;18307:306::-;18395:6;18403;18411;18464:2;18452:9;18443:7;18439:23;18435:32;18432:52;;;18480:1;18477;18470:12;18432:52;18509:9;18503:16;18493:26;;18559:2;18548:9;18544:18;18538:25;18528:35;;18603:2;18592:9;18588:18;18582:25;18572:35;;18307:306;;;;;:::o
Swarm Source
ipfs://302844810bf52c40f1a04008f14ff966fd510563baccf4083318c20118165744
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.