Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 GAPE
Holders
17
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
652.301289947 GAPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GapeToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-01 */ /* --------------------------------------------------------------------------------------------------- #GAPE Giant Ape 4% Transaction fee goes to liquidity 2% Tax for ongoing development and community efforts --------------------------------------------------------------------------------------------------- */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.6.12; 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) { 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 payable private _processing; address private _burnAddress = address(0x0000000000000000000000000000000000000000); address private _lockedLiquidity; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { 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; } function lockedLiquidity() public view returns (address) { return _lockedLiquidity; } function processing() public view returns (address payable) { return _processing; } function burn() public view returns (address) { return _burnAddress; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } modifier onlyProcessing() { require(_processing == _msgSender(), "Caller is not the processing fee address"); _; } /** * @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); } function setProcessingAddress(address payable processingAddress) public virtual onlyOwner { _processing = processingAddress; } function setLockedLiquidityAddress(address liquidityAddress) public virtual onlyOwner { _lockedLiquidity = liquidityAddress; } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; 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; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract GapeToken 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 _isDevWallet; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "GiantApe"; string private _symbol = "GAPE"; uint8 private _decimals = 9; uint256 public _taxFee = 0; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 6; uint256 private _processingPercentageOfLiquidity = 33; uint256 private _previousLiquidityFee = _liquidityFee; uint256 private _totalProcessingFees = 0; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 1000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 1 * 10**6 * 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 () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // 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; _isExcludedFromFee[burn()] = 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 processingPercentageOfLiquidity() public view returns (uint256) { return _processingPercentageOfLiquidity; } 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 devWallet(address account) public view returns(bool) { return _isDevWallet[account]; } function setAsDevWallet(address account) external onlyOwner() { _isDevWallet[account] = true; } 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 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 restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function setDevWalletFee() private { //Any dev wallets are subjected to a higher fee (2x) if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _liquidityFee = _liquidityFee.mul(2); _taxFee = _taxFee.mul(2); } 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(to != processing(), "The processing address cannot receive tokens"); require(from != processing(), "The processing address cannot send tokens"); 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 collectProcessing() public onlyProcessing { _totalProcessingFees = _totalProcessingFees.add(address(this).balance); processing().transfer(address(this).balance); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves 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 // this also ignores any ETH that was reserved for processing last time // this was called uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); //Now reserve a percentage of that eth for processing fee uint256 balanceToProcessing = (newBalance.mul(processingPercentageOfLiquidity())).div(10**2); uint256 tokensExtra = (otherHalf.mul(processingPercentageOfLiquidity())).div(10**2); //How much eth is left for liquidity? newBalance = newBalance.sub(balanceToProcessing); //how many tokens are left for liquidity? otherHalf = otherHalf.sub(tokensExtra); //Leftover tokens will be swapped into liquidity the next time this is called // 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 lockedLiquidity(), 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(!takeFee) removeAllFee(); if(devWallet(sender)) setDevWalletFee(); 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(); if(devWallet(sender)) 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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burn","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectProcessing","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":"devWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"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":[],"name":"lockedLiquidity","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"processing","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"processingPercentageOfLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setAsDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"liquidityAddress","type":"address"}],"name":"setLockedLiquidityAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"processingAddress","type":"address"}],"name":"setProcessingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","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":[],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600280546001600160a01b0319169055670de0b6b3a7640000600b5567081ad01a501bffff19600c55610100604052600860c0819052674769616e7441706560c01b60e09081526200005591600e91906200040d565b50604080518082019091526004808252634741504560e01b60209092019182526200008391600f916200040d565b506010805460ff191660091790556000601181905560128190556006601381905560216014556015556016556017805461ff001916610100179055670de0b6b3a764000060185566038d7ea4c68000601955348015620000e257600080fd5b506000620000ef620003eb565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c54600460006200014a620003eb565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001c157600080fd5b505afa158015620001d6573d6000803e3d6000fd5b505050506040513d6020811015620001ed57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200023e57600080fd5b505afa15801562000253573d6000803e3d6000fd5b505050506040513d60208110156200026a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002bd57600080fd5b505af1158015620002d2573d6000803e3d6000fd5b505050506040513d6020811015620002e957600080fd5b50516001600160601b0319606091821b811660a0529082901b1660805260016007600062000316620003ef565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526007928390529081208054909316600190811790935562000365620003fe565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905562000397620003eb565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a350620004a9565b3390565b6000546001600160a01b031690565b6002546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200045057805160ff191683800117855562000480565b8280016001018555821562000480579182015b828111156200048057825182559160200191906001019062000463565b506200048e92915062000492565b5090565b5b808211156200048e576000815560010162000493565b60805160601c60a05160601c612ace620004f160003980610f5b52806119725250806109ac52806121505280612208528061222f528061236e52806123955250612ace6000f3fe6080604052600436106102345760003560e01c80634a74bb021161012e5780638da5cb5b116100ab578063c49b9a801161006f578063c49b9a80146107ec578063c6a2f21314610818578063dd62ed3e1461082d578063e47dd83814610868578063ea2f0b371461089b5761023b565b80638da5cb5b1461073b57806395d89b4114610750578063a457c2d714610765578063a9059cbb1461079e578063b4398244146107d75761023b565b806370a08231116100f257806370a0823114610696578063715018a6146106c957806376e66db3146106de5780637d1db4a5146106f357806388f82020146107085761023b565b80634a74bb02146105d357806352390c02146105e85780635342acb41461061b57806360e693d71461064e5780636bc87c3a146106815761023b565b80633685d419116101bc578063437823ec11610180578063437823ec1461051157806344df8e70146105445780634549b0391461055957806348a8fe2e1461058b57806349bd5a5e146105be5761023b565b80633685d4191461044f57806339509351146104845780633b124fe7146104bd5780633bd5d173146104d25780633d6cfcd1146104fc5761023b565b80631694505e116102035780631694505e1461037157806318160ddd146103a257806323b872dd146103b75780632d838119146103fa578063313ce567146104245761023b565b806306fdde0314610240578063095ea7b3146102ca578063110787831461031757806313114a9d1461034a5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108ce565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d657600080fd5b50610303600480360360408110156102ed57600080fd5b506001600160a01b038135169060200135610964565b604080519115158252519081900360200190f35b34801561032357600080fd5b506103036004803603602081101561033a57600080fd5b50356001600160a01b0316610982565b34801561035657600080fd5b5061035f6109a4565b60408051918252519081900360200190f35b34801561037d57600080fd5b506103866109aa565b604080516001600160a01b039092168252519081900360200190f35b3480156103ae57600080fd5b5061035f6109ce565b3480156103c357600080fd5b50610303600480360360608110156103da57600080fd5b506001600160a01b038135811691602081013590911690604001356109d4565b34801561040657600080fd5b5061035f6004803603602081101561041d57600080fd5b5035610a5b565b34801561043057600080fd5b50610439610abb565b6040805160ff9092168252519081900360200190f35b34801561045b57600080fd5b506104826004803603602081101561047257600080fd5b50356001600160a01b0316610ac4565b005b34801561049057600080fd5b50610303600480360360408110156104a757600080fd5b506001600160a01b038135169060200135610c85565b3480156104c957600080fd5b5061035f610cd3565b3480156104de57600080fd5b50610482600480360360208110156104f557600080fd5b5035610cd9565b34801561050857600080fd5b50610386610db3565b34801561051d57600080fd5b506104826004803603602081101561053457600080fd5b50356001600160a01b0316610dc2565b34801561055057600080fd5b50610386610e3e565b34801561056557600080fd5b5061035f6004803603604081101561057c57600080fd5b50803590602001351515610e4d565b34801561059757600080fd5b50610482600480360360208110156105ae57600080fd5b50356001600160a01b0316610edf565b3480156105ca57600080fd5b50610386610f59565b3480156105df57600080fd5b50610303610f7d565b3480156105f457600080fd5b506104826004803603602081101561060b57600080fd5b50356001600160a01b0316610f8b565b34801561062757600080fd5b506103036004803603602081101561063e57600080fd5b50356001600160a01b0316611111565b34801561065a57600080fd5b506104826004803603602081101561067157600080fd5b50356001600160a01b031661112f565b34801561068d57600080fd5b5061035f6111a9565b3480156106a257600080fd5b5061035f600480360360208110156106b957600080fd5b50356001600160a01b03166111af565b3480156106d557600080fd5b50610482611211565b3480156106ea57600080fd5b5061035f6112b3565b3480156106ff57600080fd5b5061035f6112b9565b34801561071457600080fd5b506103036004803603602081101561072b57600080fd5b50356001600160a01b03166112bf565b34801561074757600080fd5b506103866112dd565b34801561075c57600080fd5b506102556112ec565b34801561077157600080fd5b506103036004803603604081101561078857600080fd5b506001600160a01b03813516906020013561134d565b3480156107aa57600080fd5b50610303600480360360408110156107c157600080fd5b506001600160a01b0381351690602001356113b5565b3480156107e357600080fd5b506103866113c9565b3480156107f857600080fd5b506104826004803603602081101561080f57600080fd5b503515156113d8565b34801561082457600080fd5b5061048261147f565b34801561083957600080fd5b5061035f6004803603604081101561085057600080fd5b506001600160a01b0381358116916020013516611526565b34801561087457600080fd5b506104826004803603602081101561088b57600080fd5b50356001600160a01b0316611551565b3480156108a757600080fd5b50610482600480360360208110156108be57600080fd5b50356001600160a01b03166115cd565b600e8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095a5780601f1061092f5761010080835404028352916020019161095a565b820191906000526020600020905b81548152906001019060200180831161093d57829003601f168201915b5050505050905090565b6000610978610971611646565b848461164a565b5060015b92915050565b6001600160a01b03811660009081526008602052604090205460ff165b919050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b60006109e1848484611736565b610a51846109ed611646565b610a4c8560405180606001604052806028815260200161293d602891396001600160a01b038a16600090815260066020526040812090610a2b611646565b6001600160a01b031681526020810191909152604001600020549190611a2c565b61164a565b5060019392505050565b6000600c54821115610a9e5760405162461bcd60e51b815260040180806020018281038252602a81526020018061287c602a913960400191505060405180910390fd5b6000610aa8611ac3565b9050610ab48382611ae6565b9392505050565b60105460ff1690565b610acc611646565b6000546001600160a01b03908116911614610b1c576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16610b89576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600a54811015610c8157816001600160a01b0316600a8281548110610bad57fe5b6000918252602090912001546001600160a01b03161415610c7957600a80546000198101908110610bda57fe5b600091825260209091200154600a80546001600160a01b039092169183908110610c0057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600990925220805460ff19169055600a805480610c5257fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610c81565b600101610b8c565b5050565b6000610978610c92611646565b84610a4c8560066000610ca3611646565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611b28565b60115481565b6000610ce3611646565b6001600160a01b03811660009081526009602052604090205490915060ff1615610d3e5760405162461bcd60e51b815260040180806020018281038252602c8152602001806129f7602c913960400191505060405180910390fd5b6000610d4983611b82565b505050506001600160a01b038416600090815260046020526040902054919250610d7591905082611bd1565b6001600160a01b038316600090815260046020526040902055600c54610d9b9082611bd1565b600c55600d54610dab9084611b28565b600d55505050565b6001546001600160a01b031690565b610dca611646565b6000546001600160a01b03908116911614610e1a576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6002546001600160a01b031690565b6000600b54831115610ea6576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610ec5576000610eb684611b82565b5093955061097c945050505050565b6000610ed084611b82565b5092955061097c945050505050565b610ee7611646565b6000546001600160a01b03908116911614610f37576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b7f000000000000000000000000000000000000000000000000000000000000000081565b601754610100900460ff1681565b610f93611646565b6000546001600160a01b03908116911614610fe3576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff1615611051576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260046020526040902054156110ab576001600160a01b03811660009081526004602052604090205461109190610a5b565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b611137611646565b6000546001600160a01b03908116911614611187576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60135481565b6001600160a01b03811660009081526009602052604081205460ff16156111ef57506001600160a01b03811660009081526005602052604090205461099f565b6001600160a01b03821660009081526004602052604090205461097c90610a5b565b611219611646565b6000546001600160a01b03908116911614611269576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60145490565b60185481565b6001600160a01b031660009081526009602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095a5780601f1061092f5761010080835404028352916020019161095a565b600061097861135a611646565b84610a4c85604051806060016040528060258152602001612a746025913960066000611384611646565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611a2c565b60006109786113c2611646565b8484611736565b6003546001600160a01b031690565b6113e0611646565b6000546001600160a01b03908116911614611430576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b60178054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611487611646565b6001546001600160a01b039081169116146114d35760405162461bcd60e51b8152600401808060200182810382526028815260200180612a236028913960400191505060405180910390fd5b6016546114e09047611b28565b6016556114eb610db3565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050158015611523573d6000803e3d6000fd5b50565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b611559611646565b6000546001600160a01b039081169116146115a9576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6115d5611646565b6000546001600160a01b03908116911614611625576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b3390565b6001600160a01b03831661168f5760405162461bcd60e51b81526004018080602001828103825260248152602001806129d36024913960400191505060405180910390fd5b6001600160a01b0382166116d45760405162461bcd60e51b81526004018080602001828103825260228152602001806128a66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661177b5760405162461bcd60e51b81526004018080602001828103825260258152602001806129ae6025913960400191505060405180910390fd5b6001600160a01b0382166117c05760405162461bcd60e51b81526004018080602001828103825260238152602001806128596023913960400191505060405180910390fd5b6117c8610db3565b6001600160a01b0316826001600160a01b031614156118185760405162461bcd60e51b815260040180806020018281038252602c8152602001806128c8602c913960400191505060405180910390fd5b611820610db3565b6001600160a01b0316836001600160a01b031614156118705760405162461bcd60e51b8152600401808060200182810382526029815260200180612a4b6029913960400191505060405180910390fd5b600081116118af5760405162461bcd60e51b81526004018080602001828103825260298152602001806129856029913960400191505060405180910390fd5b6118b76112dd565b6001600160a01b0316836001600160a01b0316141580156118f157506118db6112dd565b6001600160a01b0316826001600160a01b031614155b15611937576018548111156119375760405162461bcd60e51b81526004018080602001828103825260288152602001806128f46028913960400191505060405180910390fd5b6000611942306111af565b9050601854811061195257506018545b60195481108015908190611969575060175460ff16155b80156119a757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156119ba5750601754610100900460ff165b156119cd5760195491506119cd82611c13565b6001600160a01b03851660009081526007602052604090205460019060ff1680611a0f57506001600160a01b03851660009081526007602052604090205460ff165b15611a18575060005b611a2486868684611d06565b505050505050565b60008184841115611abb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a80578181015183820152602001611a68565b50505050905090810190601f168015611aad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611ad0611ea6565b9092509050611adf8282611ae6565b9250505090565b6000610ab483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612009565b600082820183811015610ab4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611b998a61206e565b9250925092506000806000611bb78d8686611bb2611ac3565b6120b0565b919f909e50909c50959a5093985091965092945050505050565b6000610ab483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a2c565b6017805460ff191660011790556000611c2d826002611ae6565b90506000611c3b8383611bd1565b905047611c4783612100565b6000611c534783611bd1565b90506000611c746064611c6e611c676112b3565b859061230f565b90611ae6565b90506000611c8f6064611c6e611c886112b3565b889061230f565b9050611c9b8383611bd1565b9250611ca78582611bd1565b9450611cb38584612368565b604080518781526020810185905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506017805460ff191690555050505050565b80611d1357611d13612466565b611d1c84610982565b15611d2957611d29612498565b6001600160a01b03841660009081526009602052604090205460ff168015611d6a57506001600160a01b03831660009081526009602052604090205460ff16155b15611d7f57611d7a8484846124e1565b611e7d565b6001600160a01b03841660009081526009602052604090205460ff16158015611dc057506001600160a01b03831660009081526009602052604090205460ff165b15611dd057611d7a848484612605565b6001600160a01b03841660009081526009602052604090205460ff16158015611e1257506001600160a01b03831660009081526009602052604090205460ff16155b15611e2257611d7a8484846126ae565b6001600160a01b03841660009081526009602052604090205460ff168015611e6257506001600160a01b03831660009081526009602052604090205460ff165b15611e7257611d7a8484846126f2565b611e7d8484846126ae565b80611e8a57611e8a612765565b611e9384610982565b15611ea057611ea0612765565b50505050565b600c54600b546000918291825b600a54811015611fd7578260046000600a8481548110611ecf57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611f3457508160056000600a8481548110611f0d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611f4b57600c54600b5494509450505050612005565b611f8b60046000600a8481548110611f5f57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611bd1565b9250611fcd60056000600a8481548110611fa157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611bd1565b9150600101611eb3565b50600b54600c54611fe791611ae6565b821015611fff57600c54600b54935093505050612005565b90925090505b9091565b600081836120585760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611a80578181015183820152602001611a68565b50600083858161206457fe5b0495945050505050565b60008060008061207d85612773565b9050600061208a8661278f565b905060006120a28261209c8986611bd1565b90611bd1565b979296509094509092505050565b60008080806120bf888661230f565b905060006120cd888761230f565b905060006120db888861230f565b905060006120ed8261209c8686611bd1565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061212e57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156121a757600080fd5b505afa1580156121bb573d6000803e3d6000fd5b505050506040513d60208110156121d157600080fd5b50518151829060019081106121e257fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061222d307f00000000000000000000000000000000000000000000000000000000000000008461164a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156122d25781810151838201526020016122ba565b505050509050019650505050505050600060405180830381600087803b1580156122fb57600080fd5b505af1158015611a24573d6000803e3d6000fd5b60008261231e5750600061097c565b8282028284828161232b57fe5b0414610ab45760405162461bcd60e51b815260040180806020018281038252602181526020018061291c6021913960400191505060405180910390fd5b612393307f00000000000000000000000000000000000000000000000000000000000000008461164a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7198230856000806123d06113c9565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561243b57600080fd5b505af115801561244f573d6000803e3d6000fd5b50505050506040513d6060811015611ea057600080fd5b6011541580156124765750601354155b1561248057612496565b6011805460125560138054601555600091829055555b565b6011541580156124a85750601354155b156124b257612496565b60115460125560135460158190556124cb90600261230f565b6013556011546124dc90600261230f565b601155565b6000806000806000806124f387611b82565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506125259088611bd1565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546125549087611bd1565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546125839086611b28565b6001600160a01b0389166000908152600460205260409020556125a5816127ab565b6125af8483612834565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061261787611b82565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506126499087611bd1565b6001600160a01b03808b16600090815260046020908152604080832094909455918b1681526005909152205461267f9084611b28565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546125839086611b28565b6000806000806000806126c087611b82565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125549087611bd1565b60008060008060008061270487611b82565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506127369088611bd1565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546126499087611bd1565b601254601155601554601355565b600061097c6064611c6e6011548561230f90919063ffffffff16565b600061097c6064611c6e6013548561230f90919063ffffffff16565b60006127b5611ac3565b905060006127c3838361230f565b306000908152600460205260409020549091506127e09082611b28565b3060009081526004602090815260408083209390935560099052205460ff161561282f573060009081526005602052604090205461281e9084611b28565b306000908152600560205260409020555b505050565b600c546128419083611bd1565b600c55600d546128519082611b28565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e7345524332303a20617070726f766520746f20746865207a65726f20616464726573735468652070726f63657373696e6720616464726573732063616e6e6f74207265636569766520746f6b656e735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e43616c6c6572206973206e6f74207468652070726f63657373696e672066656520616464726573735468652070726f63657373696e6720616464726573732063616e6e6f742073656e6420746f6b656e7345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ecd4533be653630be736c2a5a5448d0a5d511a98374ac2562b2ce25cd78a861164736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102345760003560e01c80634a74bb021161012e5780638da5cb5b116100ab578063c49b9a801161006f578063c49b9a80146107ec578063c6a2f21314610818578063dd62ed3e1461082d578063e47dd83814610868578063ea2f0b371461089b5761023b565b80638da5cb5b1461073b57806395d89b4114610750578063a457c2d714610765578063a9059cbb1461079e578063b4398244146107d75761023b565b806370a08231116100f257806370a0823114610696578063715018a6146106c957806376e66db3146106de5780637d1db4a5146106f357806388f82020146107085761023b565b80634a74bb02146105d357806352390c02146105e85780635342acb41461061b57806360e693d71461064e5780636bc87c3a146106815761023b565b80633685d419116101bc578063437823ec11610180578063437823ec1461051157806344df8e70146105445780634549b0391461055957806348a8fe2e1461058b57806349bd5a5e146105be5761023b565b80633685d4191461044f57806339509351146104845780633b124fe7146104bd5780633bd5d173146104d25780633d6cfcd1146104fc5761023b565b80631694505e116102035780631694505e1461037157806318160ddd146103a257806323b872dd146103b75780632d838119146103fa578063313ce567146104245761023b565b806306fdde0314610240578063095ea7b3146102ca578063110787831461031757806313114a9d1461034a5761023b565b3661023b57005b600080fd5b34801561024c57600080fd5b506102556108ce565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028f578181015183820152602001610277565b50505050905090810190601f1680156102bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d657600080fd5b50610303600480360360408110156102ed57600080fd5b506001600160a01b038135169060200135610964565b604080519115158252519081900360200190f35b34801561032357600080fd5b506103036004803603602081101561033a57600080fd5b50356001600160a01b0316610982565b34801561035657600080fd5b5061035f6109a4565b60408051918252519081900360200190f35b34801561037d57600080fd5b506103866109aa565b604080516001600160a01b039092168252519081900360200190f35b3480156103ae57600080fd5b5061035f6109ce565b3480156103c357600080fd5b50610303600480360360608110156103da57600080fd5b506001600160a01b038135811691602081013590911690604001356109d4565b34801561040657600080fd5b5061035f6004803603602081101561041d57600080fd5b5035610a5b565b34801561043057600080fd5b50610439610abb565b6040805160ff9092168252519081900360200190f35b34801561045b57600080fd5b506104826004803603602081101561047257600080fd5b50356001600160a01b0316610ac4565b005b34801561049057600080fd5b50610303600480360360408110156104a757600080fd5b506001600160a01b038135169060200135610c85565b3480156104c957600080fd5b5061035f610cd3565b3480156104de57600080fd5b50610482600480360360208110156104f557600080fd5b5035610cd9565b34801561050857600080fd5b50610386610db3565b34801561051d57600080fd5b506104826004803603602081101561053457600080fd5b50356001600160a01b0316610dc2565b34801561055057600080fd5b50610386610e3e565b34801561056557600080fd5b5061035f6004803603604081101561057c57600080fd5b50803590602001351515610e4d565b34801561059757600080fd5b50610482600480360360208110156105ae57600080fd5b50356001600160a01b0316610edf565b3480156105ca57600080fd5b50610386610f59565b3480156105df57600080fd5b50610303610f7d565b3480156105f457600080fd5b506104826004803603602081101561060b57600080fd5b50356001600160a01b0316610f8b565b34801561062757600080fd5b506103036004803603602081101561063e57600080fd5b50356001600160a01b0316611111565b34801561065a57600080fd5b506104826004803603602081101561067157600080fd5b50356001600160a01b031661112f565b34801561068d57600080fd5b5061035f6111a9565b3480156106a257600080fd5b5061035f600480360360208110156106b957600080fd5b50356001600160a01b03166111af565b3480156106d557600080fd5b50610482611211565b3480156106ea57600080fd5b5061035f6112b3565b3480156106ff57600080fd5b5061035f6112b9565b34801561071457600080fd5b506103036004803603602081101561072b57600080fd5b50356001600160a01b03166112bf565b34801561074757600080fd5b506103866112dd565b34801561075c57600080fd5b506102556112ec565b34801561077157600080fd5b506103036004803603604081101561078857600080fd5b506001600160a01b03813516906020013561134d565b3480156107aa57600080fd5b50610303600480360360408110156107c157600080fd5b506001600160a01b0381351690602001356113b5565b3480156107e357600080fd5b506103866113c9565b3480156107f857600080fd5b506104826004803603602081101561080f57600080fd5b503515156113d8565b34801561082457600080fd5b5061048261147f565b34801561083957600080fd5b5061035f6004803603604081101561085057600080fd5b506001600160a01b0381358116916020013516611526565b34801561087457600080fd5b506104826004803603602081101561088b57600080fd5b50356001600160a01b0316611551565b3480156108a757600080fd5b50610482600480360360208110156108be57600080fd5b50356001600160a01b03166115cd565b600e8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095a5780601f1061092f5761010080835404028352916020019161095a565b820191906000526020600020905b81548152906001019060200180831161093d57829003601f168201915b5050505050905090565b6000610978610971611646565b848461164a565b5060015b92915050565b6001600160a01b03811660009081526008602052604090205460ff165b919050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b60006109e1848484611736565b610a51846109ed611646565b610a4c8560405180606001604052806028815260200161293d602891396001600160a01b038a16600090815260066020526040812090610a2b611646565b6001600160a01b031681526020810191909152604001600020549190611a2c565b61164a565b5060019392505050565b6000600c54821115610a9e5760405162461bcd60e51b815260040180806020018281038252602a81526020018061287c602a913960400191505060405180910390fd5b6000610aa8611ac3565b9050610ab48382611ae6565b9392505050565b60105460ff1690565b610acc611646565b6000546001600160a01b03908116911614610b1c576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16610b89576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600a54811015610c8157816001600160a01b0316600a8281548110610bad57fe5b6000918252602090912001546001600160a01b03161415610c7957600a80546000198101908110610bda57fe5b600091825260209091200154600a80546001600160a01b039092169183908110610c0057fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600582526040808220829055600990925220805460ff19169055600a805480610c5257fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610c81565b600101610b8c565b5050565b6000610978610c92611646565b84610a4c8560066000610ca3611646565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611b28565b60115481565b6000610ce3611646565b6001600160a01b03811660009081526009602052604090205490915060ff1615610d3e5760405162461bcd60e51b815260040180806020018281038252602c8152602001806129f7602c913960400191505060405180910390fd5b6000610d4983611b82565b505050506001600160a01b038416600090815260046020526040902054919250610d7591905082611bd1565b6001600160a01b038316600090815260046020526040902055600c54610d9b9082611bd1565b600c55600d54610dab9084611b28565b600d55505050565b6001546001600160a01b031690565b610dca611646565b6000546001600160a01b03908116911614610e1a576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6002546001600160a01b031690565b6000600b54831115610ea6576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610ec5576000610eb684611b82565b5093955061097c945050505050565b6000610ed084611b82565b5092955061097c945050505050565b610ee7611646565b6000546001600160a01b03908116911614610f37576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b7f000000000000000000000000db2fb68ad06e27b3e8e3c6167028e7dec4c6b71081565b601754610100900460ff1681565b610f93611646565b6000546001600160a01b03908116911614610fe3576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff1615611051576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260046020526040902054156110ab576001600160a01b03811660009081526004602052604090205461109190610a5b565b6001600160a01b0382166000908152600560205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6001600160a01b031660009081526007602052604090205460ff1690565b611137611646565b6000546001600160a01b03908116911614611187576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60135481565b6001600160a01b03811660009081526009602052604081205460ff16156111ef57506001600160a01b03811660009081526005602052604090205461099f565b6001600160a01b03821660009081526004602052604090205461097c90610a5b565b611219611646565b6000546001600160a01b03908116911614611269576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60145490565b60185481565b6001600160a01b031660009081526009602052604090205460ff1690565b6000546001600160a01b031690565b600f8054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561095a5780601f1061092f5761010080835404028352916020019161095a565b600061097861135a611646565b84610a4c85604051806060016040528060258152602001612a746025913960066000611384611646565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611a2c565b60006109786113c2611646565b8484611736565b6003546001600160a01b031690565b6113e0611646565b6000546001600160a01b03908116911614611430576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b60178054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b611487611646565b6001546001600160a01b039081169116146114d35760405162461bcd60e51b8152600401808060200182810382526028815260200180612a236028913960400191505060405180910390fd5b6016546114e09047611b28565b6016556114eb610db3565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050158015611523573d6000803e3d6000fd5b50565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b611559611646565b6000546001600160a01b039081169116146115a9576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6115d5611646565b6000546001600160a01b03908116911614611625576040805162461bcd60e51b81526020600482018190526024820152600080516020612965833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b3390565b6001600160a01b03831661168f5760405162461bcd60e51b81526004018080602001828103825260248152602001806129d36024913960400191505060405180910390fd5b6001600160a01b0382166116d45760405162461bcd60e51b81526004018080602001828103825260228152602001806128a66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260066020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661177b5760405162461bcd60e51b81526004018080602001828103825260258152602001806129ae6025913960400191505060405180910390fd5b6001600160a01b0382166117c05760405162461bcd60e51b81526004018080602001828103825260238152602001806128596023913960400191505060405180910390fd5b6117c8610db3565b6001600160a01b0316826001600160a01b031614156118185760405162461bcd60e51b815260040180806020018281038252602c8152602001806128c8602c913960400191505060405180910390fd5b611820610db3565b6001600160a01b0316836001600160a01b031614156118705760405162461bcd60e51b8152600401808060200182810382526029815260200180612a4b6029913960400191505060405180910390fd5b600081116118af5760405162461bcd60e51b81526004018080602001828103825260298152602001806129856029913960400191505060405180910390fd5b6118b76112dd565b6001600160a01b0316836001600160a01b0316141580156118f157506118db6112dd565b6001600160a01b0316826001600160a01b031614155b15611937576018548111156119375760405162461bcd60e51b81526004018080602001828103825260288152602001806128f46028913960400191505060405180910390fd5b6000611942306111af565b9050601854811061195257506018545b60195481108015908190611969575060175460ff16155b80156119a757507f000000000000000000000000db2fb68ad06e27b3e8e3c6167028e7dec4c6b7106001600160a01b0316856001600160a01b031614155b80156119ba5750601754610100900460ff165b156119cd5760195491506119cd82611c13565b6001600160a01b03851660009081526007602052604090205460019060ff1680611a0f57506001600160a01b03851660009081526007602052604090205460ff165b15611a18575060005b611a2486868684611d06565b505050505050565b60008184841115611abb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a80578181015183820152602001611a68565b50505050905090810190601f168015611aad5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611ad0611ea6565b9092509050611adf8282611ae6565b9250505090565b6000610ab483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612009565b600082820183811015610ab4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611b998a61206e565b9250925092506000806000611bb78d8686611bb2611ac3565b6120b0565b919f909e50909c50959a5093985091965092945050505050565b6000610ab483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a2c565b6017805460ff191660011790556000611c2d826002611ae6565b90506000611c3b8383611bd1565b905047611c4783612100565b6000611c534783611bd1565b90506000611c746064611c6e611c676112b3565b859061230f565b90611ae6565b90506000611c8f6064611c6e611c886112b3565b889061230f565b9050611c9b8383611bd1565b9250611ca78582611bd1565b9450611cb38584612368565b604080518781526020810185905280820187905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506017805460ff191690555050505050565b80611d1357611d13612466565b611d1c84610982565b15611d2957611d29612498565b6001600160a01b03841660009081526009602052604090205460ff168015611d6a57506001600160a01b03831660009081526009602052604090205460ff16155b15611d7f57611d7a8484846124e1565b611e7d565b6001600160a01b03841660009081526009602052604090205460ff16158015611dc057506001600160a01b03831660009081526009602052604090205460ff165b15611dd057611d7a848484612605565b6001600160a01b03841660009081526009602052604090205460ff16158015611e1257506001600160a01b03831660009081526009602052604090205460ff16155b15611e2257611d7a8484846126ae565b6001600160a01b03841660009081526009602052604090205460ff168015611e6257506001600160a01b03831660009081526009602052604090205460ff165b15611e7257611d7a8484846126f2565b611e7d8484846126ae565b80611e8a57611e8a612765565b611e9384610982565b15611ea057611ea0612765565b50505050565b600c54600b546000918291825b600a54811015611fd7578260046000600a8481548110611ecf57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611f3457508160056000600a8481548110611f0d57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611f4b57600c54600b5494509450505050612005565b611f8b60046000600a8481548110611f5f57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611bd1565b9250611fcd60056000600a8481548110611fa157fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611bd1565b9150600101611eb3565b50600b54600c54611fe791611ae6565b821015611fff57600c54600b54935093505050612005565b90925090505b9091565b600081836120585760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611a80578181015183820152602001611a68565b50600083858161206457fe5b0495945050505050565b60008060008061207d85612773565b9050600061208a8661278f565b905060006120a28261209c8986611bd1565b90611bd1565b979296509094509092505050565b60008080806120bf888661230f565b905060006120cd888761230f565b905060006120db888861230f565b905060006120ed8261209c8686611bd1565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061212e57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156121a757600080fd5b505afa1580156121bb573d6000803e3d6000fd5b505050506040513d60208110156121d157600080fd5b50518151829060019081106121e257fe5b60200260200101906001600160a01b031690816001600160a01b03168152505061222d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461164a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156122d25781810151838201526020016122ba565b505050509050019650505050505050600060405180830381600087803b1580156122fb57600080fd5b505af1158015611a24573d6000803e3d6000fd5b60008261231e5750600061097c565b8282028284828161232b57fe5b0414610ab45760405162461bcd60e51b815260040180806020018281038252602181526020018061291c6021913960400191505060405180910390fd5b612393307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461164a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7198230856000806123d06113c9565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561243b57600080fd5b505af115801561244f573d6000803e3d6000fd5b50505050506040513d6060811015611ea057600080fd5b6011541580156124765750601354155b1561248057612496565b6011805460125560138054601555600091829055555b565b6011541580156124a85750601354155b156124b257612496565b60115460125560135460158190556124cb90600261230f565b6013556011546124dc90600261230f565b601155565b6000806000806000806124f387611b82565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506125259088611bd1565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546125549087611bd1565b6001600160a01b03808b1660009081526004602052604080822093909355908a16815220546125839086611b28565b6001600160a01b0389166000908152600460205260409020556125a5816127ab565b6125af8483612834565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061261787611b82565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506126499087611bd1565b6001600160a01b03808b16600090815260046020908152604080832094909455918b1681526005909152205461267f9084611b28565b6001600160a01b0389166000908152600560209081526040808320939093556004905220546125839086611b28565b6000806000806000806126c087611b82565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125549087611bd1565b60008060008060008061270487611b82565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506127369088611bd1565b6001600160a01b038a166000908152600560209081526040808320939093556004905220546126499087611bd1565b601254601155601554601355565b600061097c6064611c6e6011548561230f90919063ffffffff16565b600061097c6064611c6e6013548561230f90919063ffffffff16565b60006127b5611ac3565b905060006127c3838361230f565b306000908152600460205260409020549091506127e09082611b28565b3060009081526004602090815260408083209390935560099052205460ff161561282f573060009081526005602052604090205461281e9084611b28565b306000908152600560205260409020555b505050565b600c546128419083611bd1565b600c55600d546128519082611b28565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e7345524332303a20617070726f766520746f20746865207a65726f20616464726573735468652070726f63657373696e6720616464726573732063616e6e6f74207265636569766520746f6b656e735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e43616c6c6572206973206e6f74207468652070726f63657373696e672066656520616464726573735468652070726f63657373696e6720616464726573732063616e6e6f742073656e6420746f6b656e7345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ecd4533be653630be736c2a5a5448d0a5d511a98374ac2562b2ce25cd78a861164736f6c634300060c0033
Deployed Bytecode Sourcemap
25795:20058:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28376:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29288:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29288:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32698:109;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32698:109:0;-1:-1:-1;;;;;32698:109:0;;:::i;30409:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26906:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26906:51:0;;;;;;;;;;;;;;28653:95;;;;;;;;;;;;;:::i;29457:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29457:313:0;;;;;;;;;;;;;;;;;:::i;31491:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31491:253:0;;:::i;28562:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32207:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32207:479:0;-1:-1:-1;;;;;32207:479:0;;:::i;:::-;;29778:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29778:218:0;;;;;;;;:::i;26609:26::-;;;;;;;;;;;;;:::i;30662:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30662:377:0;;:::i;16301:102::-;;;;;;;;;;;;;:::i;33594:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33594:111:0;-1:-1:-1;;;;;33594:111:0;;:::i;16415:89::-;;;;;;;;;;;;;:::i;31047:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31047:436:0;;;;;;;;;:::i;17546:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17546:145:0;-1:-1:-1;;;;;17546:145:0;;:::i;26964:38::-;;;;;;;;;;;;;:::i;27043:40::-;;;;;;;;;;;;;:::i;31752:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31752:447:0;-1:-1:-1;;;;;31752:447:0;;:::i;37680:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37680:123:0;-1:-1:-1;;;;;37680:123:0;;:::i;17389:145::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17389:145:0;-1:-1:-1;;;;;17389:145:0;;:::i;26696:32::-;;;;;;;;;;;;;:::i;28756:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28756:198:0;-1:-1:-1;;;;;28756:198:0;;:::i;17229:148::-;;;;;;;;;;;;;:::i;30514:136::-;;;;;;;;;;;;;:::i;27096:50::-;;;;;;;;;;;;;:::i;30281:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30281:120:0;-1:-1:-1;;;;;30281:120:0;;:::i;16099:79::-;;;;;;;;;;;;;:::i;28467:87::-;;;;;;;;;;;;;:::i;30004:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30004:269:0;;;;;;;;:::i;28962:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28962:167:0;;;;;;;;:::i;16190:99::-;;;;;;;;;;;;;:::i;33835:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33835:171:0;;;;:::i;40154:200::-;;;;;;;;;;;;;:::i;29137:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29137:143:0;;;;;;;;;;:::i;32819:109::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32819:109:0;-1:-1:-1;;;;;32819:109:0;;:::i;33717:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33717:110:0;-1:-1:-1;;;;;33717:110:0;;:::i;28376:83::-;28446:5;28439:12;;;;;;;;-1:-1:-1;;28439:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28413:13;;28439:12;;28446:5;;28439:12;;28446:5;28439:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28376:83;:::o;29288:161::-;29363:4;29380:39;29389:12;:10;:12::i;:::-;29403:7;29412:6;29380:8;:39::i;:::-;-1:-1:-1;29437:4:0;29288:161;;;;;:::o;32698:109::-;-1:-1:-1;;;;;32778:21:0;;32754:4;32778:21;;;:12;:21;;;;;;;;32698:109;;;;:::o;30409:87::-;30478:10;;30409:87;:::o;26906:51::-;;;:::o;28653:95::-;28733:7;;28653:95;:::o;29457:313::-;29555:4;29572:36;29582:6;29590:9;29601:6;29572:9;:36::i;:::-;29619:121;29628:6;29636:12;:10;:12::i;:::-;29650:89;29688:6;29650:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29650:19:0;;;;;;:11;:19;;;;;;29670:12;:10;:12::i;:::-;-1:-1:-1;;;;;29650:33:0;;;;;;;;;;;;-1:-1:-1;29650:33:0;;;:89;:37;:89::i;:::-;29619:8;:121::i;:::-;-1:-1:-1;29758:4:0;29457:313;;;;;:::o;31491:253::-;31557:7;31596;;31585;:18;;31577:73;;;;-1:-1:-1;;;31577:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31661:19;31684:10;:8;:10::i;:::-;31661:33;-1:-1:-1;31712:24:0;:7;31661:33;31712:11;:24::i;:::-;31705:31;31491:253;-1:-1:-1;;;31491:253:0:o;28562:83::-;28628:9;;;;28562:83;:::o;32207:479::-;16659:12;:10;:12::i;:::-;16649:6;;-1:-1:-1;;;;;16649:6:0;;;:22;;;16641:67;;;;;-1:-1:-1;;;16641:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16641:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32289:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32281:60;;;::::0;;-1:-1:-1;;;32281:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32357:9;32352:327;32376:9;:16:::0;32372:20;::::1;32352:327;;;32434:7;-1:-1:-1::0;;;;;32418:23:0::1;:9;32428:1;32418:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32418:12:0::1;:23;32414:254;;;32477:9;32487:16:::0;;-1:-1:-1;;32487:20:0;;;32477:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32462:9:::1;:12:::0;;-1:-1:-1;;;;;32477:31:0;;::::1;::::0;32472:1;;32462:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32462:46:0::1;-1:-1:-1::0;;;;;32462:46:0;;::::1;;::::0;;32527:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32566:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32566:28:0::1;::::0;;32613:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32613:15:0;;;;;-1:-1:-1;;;;;;32613:15:0::1;::::0;;;;;32647:5:::1;;32414:254;32394:3;;32352:327;;;;32207:479:::0;:::o;29778:218::-;29866:4;29883:83;29892:12;:10;:12::i;:::-;29906:7;29915:50;29954:10;29915:11;:25;29927:12;:10;:12::i;:::-;-1:-1:-1;;;;;29915:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29915:25:0;;;:34;;;;;;;;;;;:38;:50::i;26609:26::-;;;;:::o;30662:377::-;30714:14;30731:12;:10;:12::i;:::-;-1:-1:-1;;;;;30763:19:0;;;;;;:11;:19;;;;;;30714:29;;-1:-1:-1;30763:19:0;;30762:20;30754:77;;;;-1:-1:-1;;;30754:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30843:15;30867:19;30878:7;30867:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30915:15:0;;;;;;:7;:15;;;;;;30842:44;;-1:-1:-1;30915:28:0;;:15;-1:-1:-1;30842:44:0;30915:19;:28::i;:::-;-1:-1:-1;;;;;30897:15:0;;;;;;:7;:15;;;;;:46;30964:7;;:20;;30976:7;30964:11;:20::i;:::-;30954:7;:30;31008:10;;:23;;31023:7;31008:14;:23::i;:::-;30995:10;:36;-1:-1:-1;;;30662:377:0:o;16301:102::-;16384:11;;-1:-1:-1;;;;;16384:11:0;16301:102;:::o;33594:111::-;16659:12;:10;:12::i;:::-;16649:6;;-1:-1:-1;;;;;16649:6:0;;;:22;;;16641:67;;;;;-1:-1:-1;;;16641:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16641:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33663:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33663:34:0::1;33693:4;33663:34;::::0;;33594:111::o;16415:89::-;16484:12;;-1:-1:-1;;;;;16484:12:0;16415:89;:::o;31047:436::-;31137:7;31176;;31165;:18;;31157:62;;;;;-1:-1:-1;;;31157:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31235:17;31230:246;;31270:15;31294:19;31305:7;31294:10;:19::i;:::-;-1:-1:-1;31269:44:0;;-1:-1:-1;31328:14:0;;-1:-1:-1;;;;;31328:14:0;31230:246;31377:23;31408:19;31419:7;31408:10;:19::i;:::-;-1:-1:-1;31375:52:0;;-1:-1:-1;31442:22:0;;-1:-1:-1;;;;;31442:22:0;17546:145;16659:12;:10;:12::i;:::-;16649:6;;-1:-1:-1;;;;;16649:6:0;;;:22;;;16641:67;;;;;-1:-1:-1;;;16641:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16641:67:0;;;;;;;;;;;;;;;17648:16:::1;:35:::0;;-1:-1:-1;;;;;;17648:35:0::1;-1:-1:-1::0;;;;;17648:35:0;;;::::1;::::0;;;::::1;::::0;;17546:145::o;26964:38::-;;;:::o;27043:40::-;;;;;;;;;:::o;31752:447::-;16659:12;:10;:12::i;:::-;16649:6;;-1:-1:-1;;;;;16649:6:0;;;:22;;;16641:67;;;;;-1:-1:-1;;;16641:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16641:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31949:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31948:21;31940:61;;;::::0;;-1:-1:-1;;;31940:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32015:16:0;::::1;32034:1;32015:16:::0;;;:7:::1;:16;::::0;;;;;:20;32012:108:::1;;-1:-1:-1::0;;;;;32091:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32071:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32052:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32012:108:::1;-1:-1:-1::0;;;;;32130:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32130:27:0::1;32153:4;32130:27:::0;;::::1;::::0;;;32168:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32168:23:0::1;::::0;;::::1;::::0;;31752:447::o;37680:123::-;-1:-1:-1;;;;;37768:27:0;37744:4;37768:27;;;:18;:27;;;;;;;;;37680:123::o;17389:145::-;16659:12;:10;:12::i;:::-;16649:6;;-1:-1:-1;;;;;16649:6:0;;;:22;;;16641:67;;;;;-1:-1:-1;;;16641:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16641:67:0;;;;;;;;;;;;;;;17495:11:::1;:31:::0;;-1:-1:-1;;;;;;17495:31:0::1;-1:-1:-1::0;;;;;17495:31:0;;;::::1;::::0;;;::::1;::::0;;17389:145::o;26696:32::-;;;;:::o;28756:198::-;-1:-1:-1;;;;;28846:20:0;;28822:7;28846:20;;;:11;:20;;;;;;;;28842:49;;;-1:-1:-1;;;;;;28875:16:0;;;;;;:7;:16;;;;;;28868:23;;28842:49;-1:-1:-1;;;;;28929:16:0;;;;;;:7;:16;;;;;;28909:37;;:19;:37::i;17229:148::-;16659:12;:10;:12::i;:::-;16649:6;;-1:-1:-1;;;;;16649:6:0;;;:22;;;16641:67;;;;;-1:-1:-1;;;16641:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16641:67:0;;;;;;;;;;;;;;;17336:1:::1;17320:6:::0;;17299:40:::1;::::0;-1:-1:-1;;;;;17320:6:0;;::::1;::::0;17299:40:::1;::::0;17336:1;;17299:40:::1;17367:1;17350:19:::0;;-1:-1:-1;;;;;;17350:19:0::1;::::0;;17229:148::o;30514:136::-;30610:32;;30514:136;:::o;27096:50::-;;;;:::o;30281:120::-;-1:-1:-1;;;;;30373:20:0;30349:4;30373:20;;;:11;:20;;;;;;;;;30281:120::o;16099:79::-;16137:7;16164:6;-1:-1:-1;;;;;16164:6:0;16099:79;:::o;28467:87::-;28539:7;28532:14;;;;;;;;-1:-1:-1;;28532:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28506:13;;28532:14;;28539:7;;28532:14;;28539:7;28532:14;;;;;;;;;;;;;;;;;;;;;;;;30004:269;30097:4;30114:129;30123:12;:10;:12::i;:::-;30137:7;30146:96;30185:15;30146:96;;;;;;;;;;;;;;;;;:11;:25;30158:12;:10;:12::i;:::-;-1:-1:-1;;;;;30146:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30146:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;28962:167::-;29040:4;29057:42;29067:12;:10;:12::i;:::-;29081:9;29092:6;29057:9;:42::i;16190:99::-;16265:16;;-1:-1:-1;;;;;16265:16:0;16190:99;:::o;33835:171::-;16659:12;:10;:12::i;:::-;16649:6;;-1:-1:-1;;;;;16649:6:0;;;:22;;;16641:67;;;;;-1:-1:-1;;;16641:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16641:67:0;;;;;;;;;;;;;;;33912:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;33912:32:0;;::::1;::::0;;;::::1;::::0;;;33960:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;33835:171:::0;:::o;40154:200::-;16800:12;:10;:12::i;:::-;16785:11;;-1:-1:-1;;;;;16785:11:0;;;:27;;;16777:80;;;;-1:-1:-1;;;16777:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40244:20:::1;::::0;:47:::1;::::0;40269:21:::1;40244:24;:47::i;:::-;40221:20;:70:::0;40302:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;40302:21:0::1;:44;40324:21;40302:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40154:200::o:0;29137:143::-;-1:-1:-1;;;;;29245:18:0;;;29218:7;29245:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29137:143::o;32819:109::-;16659:12;:10;:12::i;:::-;16649:6;;-1:-1:-1;;;;;16649:6:0;;;:22;;;16641:67;;;;;-1:-1:-1;;;16641:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16641:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32892:21:0::1;;::::0;;;:12:::1;:21;::::0;;;;:28;;-1:-1:-1;;32892:28:0::1;32916:4;32892:28;::::0;;32819:109::o;33717:110::-;16659:12;:10;:12::i;:::-;16649:6;;-1:-1:-1;;;;;16649:6:0;;;:22;;;16641:67;;;;;-1:-1:-1;;;16641:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16641:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33784:27:0::1;33814:5;33784:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33784:35:0::1;::::0;;33717:110::o;8406:106::-;8494:10;8406:106;:::o;37811:337::-;-1:-1:-1;;;;;37904:19:0;;37896:68;;;;-1:-1:-1;;;37896:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37983:21:0;;37975:68;;;;-1:-1:-1;;;37975:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38056:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38108:32;;;;;;;;;;;;;;;;;37811:337;;;:::o;38156:1986::-;-1:-1:-1;;;;;38278:18:0;;38270:68;;;;-1:-1:-1;;;38270:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38357:16:0;;38349:64;;;;-1:-1:-1;;;38349:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38438:12;:10;:12::i;:::-;-1:-1:-1;;;;;38432:18:0;:2;-1:-1:-1;;;;;38432:18:0;;;38424:75;;;;-1:-1:-1;;;38424:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38526:12;:10;:12::i;:::-;-1:-1:-1;;;;;38518:20:0;:4;-1:-1:-1;;;;;38518:20:0;;;38510:74;;;;-1:-1:-1;;;38510:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38612:1;38603:6;:10;38595:64;;;;-1:-1:-1;;;38595:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38682:7;:5;:7::i;:::-;-1:-1:-1;;;;;38674:15:0;:4;-1:-1:-1;;;;;38674:15:0;;;:32;;;;;38699:7;:5;:7::i;:::-;-1:-1:-1;;;;;38693:13:0;:2;-1:-1:-1;;;;;38693:13:0;;;38674:32;38670:127;;;38740:12;;38730:6;:22;;38722:75;;;;-1:-1:-1;;;38722:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39092:28;39123:24;39141:4;39123:9;:24::i;:::-;39092:55;;39195:12;;39171:20;:36;39168:112;;-1:-1:-1;39256:12:0;;39168:112;39351:29;;39327:53;;;;;;;39409;;-1:-1:-1;39446:16:0;;;;39445:17;39409:53;:91;;;;;39487:13;-1:-1:-1;;;;;39479:21:0;:4;-1:-1:-1;;;;;39479:21:0;;;39409:91;:129;;;;-1:-1:-1;39517:21:0;;;;;;;39409:129;39391:318;;;39588:29;;39565:52;;39661:36;39676:20;39661:14;:36::i;:::-;-1:-1:-1;;;;;39917:24:0;;39790:12;39917:24;;;:18;:24;;;;;;39805:4;;39917:24;;;:50;;-1:-1:-1;;;;;;39945:22:0;;;;;;:18;:22;;;;;;;;39917:50;39914:96;;;-1:-1:-1;39993:5:0;39914:96;40096:38;40111:4;40116:2;40119:6;40126:7;40096:14;:38::i;:::-;38156:1986;;;;;;:::o;4816:192::-;4902:7;4938:12;4930:6;;;;4922:29;;;;-1:-1:-1;;;4922:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4974:5:0;;;4816:192::o;35469:163::-;35510:7;35531:15;35548;35567:19;:17;:19::i;:::-;35530:56;;-1:-1:-1;35530:56:0;-1:-1:-1;35604:20:0;35530:56;;35604:11;:20::i;:::-;35597:27;;;;35469:163;:::o;6214:132::-;6272:7;6299:39;6303:1;6306;6299:39;;;;;;;;;;;;;;;;;:3;:39::i;3913:181::-;3971:7;4003:5;;;4027:6;;;;4019:46;;;;;-1:-1:-1;;;4019:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34267:419;34326:7;34335;34344;34353;34362;34371;34392:23;34417:12;34431:18;34453:20;34465:7;34453:11;:20::i;:::-;34391:82;;;;;;34485:15;34502:23;34527:12;34543:50;34555:7;34564:4;34570:10;34582;:8;:10::i;:::-;34543:11;:50::i;:::-;34484:109;;;;-1:-1:-1;34484:109:0;;-1:-1:-1;34644:15:0;;-1:-1:-1;34661:4:0;;-1:-1:-1;34667:10:0;;-1:-1:-1;34267:419:0;;-1:-1:-1;;;;;34267:419:0:o;4377:136::-;4435:7;4462:43;4466:1;4469;4462:43;;;;;;;;;;;;;;;;;:3;:43::i;40363:1653::-;27525:16;:23;;-1:-1:-1;;27525:23:0;27544:4;27525:23;;;:16;40514:27:::1;:20:::0;40539:1:::1;40514:24;:27::i;:::-;40499:42:::0;-1:-1:-1;40552:17:0::1;40572:30;:20:::0;40499:42;40572:24:::1;:30::i;:::-;40552:50:::0;-1:-1:-1;41024:21:0::1;41090:22;41107:4:::0;41090:16:::1;:22::i;:::-;41174:18;41195:41;:21;41221:14:::0;41195:25:::1;:41::i;:::-;41174:62;;41334:27;41364:62;41420:5;41365:49;41380:33;:31;:33::i;:::-;41365:10:::0;;:14:::1;:49::i;:::-;41364:55:::0;::::1;:62::i;:::-;41334:92;;41437:19;41459:61;41514:5;41460:48;41474:33;:31;:33::i;:::-;41460:9:::0;;:13:::1;:48::i;41459:61::-;41437:83:::0;-1:-1:-1;41602:35:0::1;:10:::0;41617:19;41602:14:::1;:35::i;:::-;41589:48:::0;-1:-1:-1;41721:26:0::1;:9:::0;41735:11;41721:13:::1;:26::i;:::-;41709:38;;41904:35;41917:9;41928:10;41904:12;:35::i;:::-;41965:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;27571:16:0;:24;;-1:-1:-1;;27571:24:0;;;-1:-1:-1;;;;;40363:1653:0:o;43225:942::-;43336:7;43332:40;;43358:14;:12;:14::i;:::-;43386:17;43396:6;43386:9;:17::i;:::-;43383:39;;;43405:17;:15;:17::i;:::-;-1:-1:-1;;;;;43457:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;43481:22:0;;;;;;:11;:22;;;;;;;;43480:23;43457:46;43453:597;;;43520:48;43542:6;43550:9;43561:6;43520:21;:48::i;:::-;43453:597;;;-1:-1:-1;;;;;43591:19:0;;;;;;:11;:19;;;;;;;;43590:20;:46;;;;-1:-1:-1;;;;;;43614:22:0;;;;;;:11;:22;;;;;;;;43590:46;43586:464;;;43653:46;43673:6;43681:9;43692:6;43653:19;:46::i;43586:464::-;-1:-1:-1;;;;;43722:19:0;;;;;;:11;:19;;;;;;;;43721:20;:47;;;;-1:-1:-1;;;;;;43746:22:0;;;;;;:11;:22;;;;;;;;43745:23;43721:47;43717:333;;;43785:44;43803:6;43811:9;43822:6;43785:17;:44::i;43717:333::-;-1:-1:-1;;;;;43851:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;43874:22:0;;;;;;:11;:22;;;;;;;;43851:45;43847:203;;;43913:48;43935:6;43943:9;43954:6;43913:21;:48::i;43847:203::-;43994:44;44012:6;44020:9;44031:6;43994:17;:44::i;:::-;44074:7;44070:41;;44096:15;:13;:15::i;:::-;44125:17;44135:6;44125:9;:17::i;:::-;44122:37;;;44144:15;:13;:15::i;:::-;43225:942;;;;:::o;35640:561::-;35737:7;;35773;;35690;;;;;35797:289;35821:9;:16;35817:20;;35797:289;;;35887:7;35863;:21;35871:9;35881:1;35871:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35871:12:0;35863:21;;;;;;;;;;;;;:31;;:66;;;35922:7;35898;:21;35906:9;35916:1;35906:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35906:12:0;35898:21;;;;;;;;;;;;;:31;35863:66;35859:97;;;35939:7;;35948;;35931:25;;;;;;;;;35859:97;35981:34;35993:7;:21;36001:9;36011:1;36001:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36001:12:0;35993:21;;;;;;;;;;;;;35981:7;;:11;:34::i;:::-;35971:44;;36040:34;36052:7;:21;36060:9;36070:1;36060:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36060:12:0;36052:21;;;;;;;;;;;;;36040:7;;:11;:34::i;:::-;36030:44;-1:-1:-1;35839:3:0;;35797:289;;;-1:-1:-1;36122:7:0;;36110;;:20;;:11;:20::i;:::-;36100:7;:30;36096:61;;;36140:7;;36149;;36132:25;;;;;;;;36096:61;36176:7;;-1:-1:-1;36185:7:0;-1:-1:-1;35640:561:0;;;:::o;6842:278::-;6928:7;6963:12;6956:5;6948:28;;;;-1:-1:-1;;;6948:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6987:9;7003:1;6999;:5;;;;;;;6842:278;-1:-1:-1;;;;;6842:278:0:o;34694:330::-;34754:7;34763;34772;34792:12;34807:24;34823:7;34807:15;:24::i;:::-;34792:39;;34842:18;34863:30;34885:7;34863:21;:30::i;:::-;34842:51;-1:-1:-1;34904:23:0;34930:33;34842:51;34930:17;:7;34942:4;34930:11;:17::i;:::-;:21;;:33::i;:::-;34904:59;34999:4;;-1:-1:-1;35005:10:0;;-1:-1:-1;34694:330:0;;-1:-1:-1;;;34694:330:0:o;35032:429::-;35147:7;;;;35203:24;:7;35215:11;35203;:24::i;:::-;35185:42;-1:-1:-1;35238:12:0;35253:21;:4;35262:11;35253:8;:21::i;:::-;35238:36;-1:-1:-1;35285:18:0;35306:27;:10;35321:11;35306:14;:27::i;:::-;35285:48;-1:-1:-1;35344:23:0;35370:33;35285:48;35370:17;:7;35382:4;35370:11;:17::i;:33::-;35422:7;;;;-1:-1:-1;35448:4:0;;-1:-1:-1;35032:429:0;;-1:-1:-1;;;;;;;35032:429:0:o;42024:589::-;42174:16;;;42188:1;42174:16;;;42150:21;42174:16;;;;;42150:21;42174:16;;;;;;;;;;-1:-1:-1;42174:16:0;42150:40;;42219:4;42201;42206:1;42201:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;42201:23:0;;;-1:-1:-1;;;;;42201:23:0;;;;;42245:15;-1:-1:-1;;;;;42245:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42245:22:0;42235:7;;:4;;42240:1;;42235:7;;;;;;;;;;;:32;-1:-1:-1;;;;;42235:32:0;;;-1:-1:-1;;;;;42235:32:0;;;;;42280:62;42297:4;42312:15;42330:11;42280:8;:62::i;:::-;42381:15;-1:-1:-1;;;;;42381:66:0;;42462:11;42488:1;42532:4;42559;42579:15;42381:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42381:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5267:471;5325:7;5570:6;5566:47;;-1:-1:-1;5600:1:0;5593:8;;5566:47;5637:5;;;5641:1;5637;:5;:1;5661:5;;;;;:10;5653:56;;;;-1:-1:-1;;;5653:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42621:523;42769:62;42786:4;42801:15;42819:11;42769:8;:62::i;:::-;42874:15;-1:-1:-1;;;;;42874:31:0;;42913:9;42946:4;42966:11;42992:1;43035;43078:17;:15;:17::i;:::-;43110:15;42874:262;;;;;;;;;;;;;-1:-1:-1;;;;;42874:262:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42874:262:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36920:250;36966:7;;:12;:34;;;;-1:-1:-1;36982:13:0;;:18;36966:34;36963:46;;;37002:7;;36963:46;37047:7;;;37029:15;:25;37089:13;;;37065:21;:37;-1:-1:-1;37123:11:0;;;;37145:17;36920:250;:::o;37319:347::-;37430:7;;:12;:34;;;;-1:-1:-1;37446:13:0;;:18;37430:34;37427:46;;;37466:7;;37427:46;37511:7;;37493:15;:25;37553:13;;37529:21;:37;;;37603:20;;37621:1;37603:17;:20::i;:::-;37587:13;:36;37644:7;;:14;;37656:1;37644:11;:14::i;:::-;37634:7;:24;37319:347::o;45284:566::-;45387:15;45404:23;45429:12;45443:23;45468:12;45482:18;45504:19;45515:7;45504:10;:19::i;:::-;-1:-1:-1;;;;;45552:15:0;;;;;;:7;:15;;;;;;45386:137;;-1:-1:-1;45386:137:0;;-1:-1:-1;45386:137:0;;-1:-1:-1;45386:137:0;-1:-1:-1;45386:137:0;-1:-1:-1;45386:137:0;-1:-1:-1;45552:28:0;;45572:7;45552:19;:28::i;:::-;-1:-1:-1;;;;;45534:15:0;;;;;;:7;:15;;;;;;;;:46;;;;45609:7;:15;;;;:28;;45629:7;45609:19;:28::i;:::-;-1:-1:-1;;;;;45591:15:0;;;;;;;:7;:15;;;;;;:46;;;;45669:18;;;;;;;:39;;45692:15;45669:22;:39::i;:::-;-1:-1:-1;;;;;45648:18:0;;;;;;:7;:18;;;;;:60;45722:26;45737:10;45722:14;:26::i;:::-;45759:23;45771:4;45777;45759:11;:23::i;:::-;45815:9;-1:-1:-1;;;;;45798:44:0;45807:6;-1:-1:-1;;;;;45798:44:0;;45826:15;45798:44;;;;;;;;;;;;;;;;;;45284:566;;;;;;;;;:::o;44690:586::-;44791:15;44808:23;44833:12;44847:23;44872:12;44886:18;44908:19;44919:7;44908:10;:19::i;:::-;-1:-1:-1;;;;;44956:15:0;;;;;;:7;:15;;;;;;44790:137;;-1:-1:-1;44790:137:0;;-1:-1:-1;44790:137:0;;-1:-1:-1;44790:137:0;-1:-1:-1;44790:137:0;-1:-1:-1;44790:137:0;-1:-1:-1;44956:28:0;;44790:137;44956:19;:28::i;:::-;-1:-1:-1;;;;;44938:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;45016:18;;;;;:7;:18;;;;;:39;;45039:15;45016:22;:39::i;:::-;-1:-1:-1;;;;;44995:18:0;;;;;;:7;:18;;;;;;;;:60;;;;45087:7;:18;;;;:39;;45110:15;45087:22;:39::i;44175:502::-;44274:15;44291:23;44316:12;44330:23;44355:12;44369:18;44391:19;44402:7;44391:10;:19::i;:::-;-1:-1:-1;;;;;44439:15:0;;;;;;:7;:15;;;;;;44273:137;;-1:-1:-1;44273:137:0;;-1:-1:-1;44273:137:0;;-1:-1:-1;44273:137:0;-1:-1:-1;44273:137:0;-1:-1:-1;44273:137:0;-1:-1:-1;44439:28:0;;44273:137;44439:19;:28::i;32940:642::-;33043:15;33060:23;33085:12;33099:23;33124:12;33138:18;33160:19;33171:7;33160:10;:19::i;:::-;-1:-1:-1;;;;;33208:15:0;;;;;;:7;:15;;;;;;33042:137;;-1:-1:-1;33042:137:0;;-1:-1:-1;33042:137:0;;-1:-1:-1;33042:137:0;-1:-1:-1;33042:137:0;-1:-1:-1;33042:137:0;-1:-1:-1;33208:28:0;;33228:7;33208:19;:28::i;:::-;-1:-1:-1;;;;;33190:15:0;;;;;;:7;:15;;;;;;;;:46;;;;33265:7;:15;;;;:28;;33285:7;33265:19;:28::i;37182:125::-;37236:15;;37226:7;:25;37278:21;;37262:13;:37;37182:125::o;36580:154::-;36644:7;36671:55;36710:5;36671:20;36683:7;;36671;:11;;:20;;;;:::i;36742:166::-;36812:7;36839:61;36884:5;36839:26;36851:13;;36839:7;:11;;:26;;;;:::i;36213:355::-;36276:19;36299:10;:8;:10::i;:::-;36276:33;-1:-1:-1;36320:18:0;36341:27;:10;36276:33;36341:14;:27::i;:::-;36420:4;36404:22;;;;:7;:22;;;;;;36320:48;;-1:-1:-1;36404:38:0;;36320:48;36404:26;:38::i;:::-;36395:4;36379:22;;;;:7;:22;;;;;;;;:63;;;;36456:11;:26;;;;;;36453:107;;;36538:4;36522:22;;;;:7;:22;;;;;;:38;;36549:10;36522:26;:38::i;:::-;36513:4;36497:22;;;;:7;:22;;;;;:63;36453:107;36213:355;;;:::o;34112:147::-;34190:7;;:17;;34202:4;34190:11;:17::i;:::-;34180:7;:27;34231:10;;:20;;34246:4;34231:14;:20::i;:::-;34218:10;:33;-1:-1:-1;;34112:147:0:o
Swarm Source
ipfs://ecd4533be653630be736c2a5a5448d0a5d511a98374ac2562b2ce25cd78a8611
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.