ERC-20
Overview
Max Total Supply
420,000,000 ER
Holders
119
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
240,715.845827262 ERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ElonRogan
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-19 */ /* _______ __ ______ .__ __. .______ ______ _______ ___ .__ __. | ____|| | / __ \ | \ | | | _ \ / __ \ / _____| / \ | \ | | | |__ | | | | | | | \| | | |_) | | | | | | | __ / ^ \ | \| | | __| | | | | | | | . ` | | / | | | | | | |_ | / /_\ \ | . ` | | |____ | `----.| `--' | | |\ | | |\ \----.| `--' | | |__| | / _____ \ | |\ | |_______||_______| \______/ |__| \__| | _| `._____| \______/ \______| /__/ \__\ |__| \__| .______ ____ ____ | _ \ \ \ / / | |_) | \ \/ / | _ < \_ _/ | |_) | | | |______/ |__| _______..______ __ __ _______ _______ _______ ___ ______ / || _ \ | | | | | ____|| ____| | \ / \ / __ \ | (----`| |_) | | | | | | |__ | |__ | .--. | / ^ \ | | | | \ \ | ___/ | | | | | __| | __| | | | | / /_\ \ | | | | .----) | | | | `----.| | | | | | | '--' | / _____ \ | `--' | |_______/ | _| |_______||__| |__| |__| |_______/ /__/ \__\ \______/ By the community, for the community. 4.20% roundtrip tax to respect the digits. */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address 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 Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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; } } /** * @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; 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; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), 'Ownable: caller is not the owner'); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), 'Ownable: new owner is the zero address'); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Pair { function sync() external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; } pragma solidity ^0.6.0; abstract contract ReentrancyGuard { uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() public { _status = _NOT_ENTERED; } modifier nonReentrant() { require(_status != _ENTERED, 'ReentrancyGuard: reentrant call'); _status = _ENTERED; _; _status = _NOT_ENTERED; } modifier isHuman() { require(tx.origin == msg.sender, 'sorry humans only'); _; } } pragma solidity ^0.6.0; library TransferHelper { function safeApprove( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::safeApprove: approve failed' ); } function safeTransfer( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::safeTransfer: transfer failed' ); } function safeTransferFrom( address token, address from, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::transferFrom: transferFrom failed' ); } function safeTransferETH(address to, uint256 value) internal { (bool success, ) = to.call{value: value}(new bytes(0)); require(success, 'TransferHelper::safeTransferETH: ETH transfer failed'); } } interface IPinkAntiBot { function setTokenOwner(address owner) external; function onPreTransferCheck( address from, address to, uint256 amount ) external; } contract ElonRogan is Context, IERC20, Ownable, ReentrancyGuard { using SafeMath for uint256; using Address for address; using TransferHelper for address; string private _name = 'ElonRogan'; string private _symbol = 'ER'; uint8 private _decimals = 9; mapping(address => uint256) internal _reflectionBalance; mapping(address => uint256) internal _tokenBalance; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private constant MAX = ~uint256(0); uint256 internal _tokenTotal = 420_000_000e9; uint256 internal _reflectionTotal = (MAX - (MAX % _tokenTotal)); mapping(address => bool) public isTaxless; mapping(address => bool) public isMaxTxExempt; mapping(address => bool) internal _isExcluded; address[] internal _excluded; mapping(address => bool) public blacklist; uint256 public _feeDecimal = 2; // index 0 = buy fee, index 1 = sell fee, index 2 = p2p fee uint256[] public _taxFee; uint256[] public _marketingFee; uint256[] public _teamFee; uint256[] public _LPFee; uint256 internal _feeTotal; uint256 internal _marketingFeeCollected; uint256 internal _teamFeeCollected; uint256 internal _LPFeeCollected; bool public isFeeActive = false; bool private inSwap; bool public swapEnabled = true; uint256 public maxWalletAmount = _tokenTotal.mul(10000).div(10000); // 1% uint256 public maxTxAmount = _tokenTotal; uint256 public minTokensBeforeSwap = 42_000e9; address public marketingWallet; address public teamWallet; address public LPWallet; IUniswapV2Router02 public router; address public pair; uint256 public launchedAt = 0; uint256 public launchedAtTimestamp; event SwapUpdated(bool enabled); event AutoLiquify(uint256 amountETH, uint256 amountBOG); event Swap(uint256 swaped, uint256 recieved); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() public { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); router = _uniswapV2Router; marketingWallet = 0x5fa96ba5Be4c5eAf555Cd44E9f60D24ED63cAD9C; teamWallet = 0x1CcF131FE646152bbe1C3ac5D4677325c75E2Ea9; LPWallet = 0x3AE950FD4BbFB2431Ace80e7e33DC6D9AB5F5c11; isTaxless[msg.sender] = true; isTaxless[marketingWallet] = true; isTaxless[teamWallet] = true; isTaxless[LPWallet] = true; isTaxless[address(this)] = true; isMaxTxExempt[msg.sender] = true; isMaxTxExempt[pair] = true; isMaxTxExempt[address(router)] = true; isMaxTxExempt[address(this)] = true; excludeAccount(address(pair)); excludeAccount(address(this)); excludeAccount(address(marketingWallet)); excludeAccount(address(teamWallet)); excludeAccount(address(LPWallet)); excludeAccount(address(address(0))); excludeAccount(address(address(0x000000000000000000000000000000000000dEaD))); _reflectionBalance[msg.sender] = _reflectionTotal; emit Transfer(address(0),msg.sender, _tokenTotal); _taxFee.push(0); _taxFee.push(105); _taxFee.push(0); _marketingFee.push(105); _marketingFee.push(0); _marketingFee.push(0); _teamFee.push(0); _teamFee.push(105); _teamFee.push(0); _LPFee.push(105); _LPFee.push(0); _LPFee.push(0); } 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 _tokenTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tokenBalance[account]; return tokenFromReflection(_reflectionBalance[account]); } function transfer(address recipient, uint256 amount) public virtual 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 virtual 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 isExcluded(address account) public view returns (bool) { return _isExcluded[account]; } function reflectionFromToken(uint256 tokenAmount) public view returns (uint256) { require(tokenAmount <= _tokenTotal, 'Amount must be less than supply'); return tokenAmount.mul(_getReflectionRate()); } function tokenFromReflection(uint256 reflectionAmount) public view returns (uint256) { require(reflectionAmount <= _reflectionTotal, 'Amount must be less than total reflections'); uint256 currentRate = _getReflectionRate(); return reflectionAmount.div(currentRate); } function excludeAccount(address account) public onlyOwner { require(account != address(router), 'ERC20: We can not exclude Uniswap router.'); //require(!_isExcluded[account], 'ERC20: Account is already excluded'); if (_reflectionBalance[account] > 0) { _tokenBalance[account] = tokenFromReflection(_reflectionBalance[account]); } _isExcluded[account] = true; _excluded.push(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 sender, address recipient, uint256 amount ) private { require(sender != address(0), 'ERC20: transfer from the zero address'); require(recipient != address(0), 'ERC20: transfer to the zero address'); require(amount > 0, 'Transfer amount must be greater than zero'); require(isTaxless[sender] || isTaxless[recipient] || recipient == pair || balanceOf(recipient).add(amount) <= maxWalletAmount, 'Max Wallet Limit Exceeds!'); require(isMaxTxExempt[sender] || amount <= maxTxAmount, "Transfer exceeds limit!"); require(!blacklist[sender] && !blacklist[recipient], "sender or recipient is blacklisted!"); if (swapEnabled && !inSwap && sender != pair) { swap(); } if(!launched() && sender == pair) { blacklist[recipient] = true; } uint256 transferAmount = amount; uint256 rate = _getReflectionRate(); if (isFeeActive && !isTaxless[sender] && !isTaxless[recipient] && !inSwap) { transferAmount = collectFee(sender, amount, rate, recipient == pair, sender != pair && recipient != pair); } //transfer reflection _reflectionBalance[sender] = _reflectionBalance[sender].sub(amount.mul(rate)); _reflectionBalance[recipient] = _reflectionBalance[recipient].add(transferAmount.mul(rate)); //if any account belongs to the excludedAccount transfer token if (_isExcluded[sender]) { _tokenBalance[sender] = _tokenBalance[sender].sub(amount); } if (_isExcluded[recipient]) { _tokenBalance[recipient] = _tokenBalance[recipient].add(transferAmount); } emit Transfer(sender, recipient, transferAmount); } function calculateFee(uint256 feeIndex, uint256 amount) internal returns(uint256, uint256) { uint256 taxFee = amount.mul(_taxFee[feeIndex]).div(10**(_feeDecimal + 2)); uint256 marketingFee = amount.mul(_marketingFee[feeIndex]).div(10**(_feeDecimal + 2)); uint256 teamFee = amount.mul(_teamFee[feeIndex]).div(10**(_feeDecimal + 2)); uint256 LPFee = amount.mul(_LPFee[feeIndex]).div(10**(_feeDecimal + 2)); _marketingFeeCollected = _marketingFeeCollected.add(marketingFee); _teamFeeCollected = _teamFeeCollected.add(teamFee); _LPFeeCollected = _LPFeeCollected.add(LPFee); return (taxFee, marketingFee.add(teamFee).add(LPFee)); } function collectFee( address account, uint256 amount, uint256 rate, bool sell, bool p2p ) private returns (uint256) { uint256 transferAmount = amount; (uint256 taxFee, uint256 otherFee) = calculateFee(p2p ? 2 : sell ? 1 : 0, amount); if(otherFee != 0) { transferAmount = transferAmount.sub(otherFee); _reflectionBalance[address(this)] = _reflectionBalance[address(this)].add(otherFee.mul(rate)); if (_isExcluded[address(this)]) { _tokenBalance[address(this)] = _tokenBalance[address(this)].add(otherFee); } emit Transfer(account, address(this), otherFee); } if(taxFee != 0){ _reflectionTotal = _reflectionTotal.sub(taxFee.mul(rate)); } _feeTotal = _feeTotal.add(taxFee).add(otherFee); return transferAmount; } function sendViaCall(address payable _to, uint amount) private { (bool sent, bytes memory data) = _to.call{value: amount}(""); data; require(sent, "Failed to send Ether"); } function swap() private lockTheSwap { // How much are we swaping? uint256 totalFee = _teamFeeCollected.add(_marketingFeeCollected).add(_LPFeeCollected); uint256 halfLPFee = _LPFeeCollected.div(2); uint256 amountToSwap = halfLPFee.add(_marketingFeeCollected).add(_teamFeeCollected); if(minTokensBeforeSwap > totalFee) return; // Let's swap for eth now address[] memory sellPath = new address[](2); sellPath[0] = address(this); sellPath[1] = router.WETH(); uint256 balanceBefore = address(this).balance; _approve(address(this), address(router), amountToSwap); router.swapExactTokensForETHSupportingFeeOnTransferTokens( amountToSwap, 0, sellPath, address(this), block.timestamp ); uint256 amountFee = address(this).balance.sub(balanceBefore); // Send to marketing uint256 amountMarketing = amountFee.mul(_marketingFeeCollected).div(amountToSwap); if(amountMarketing > 0) sendViaCall(payable(marketingWallet), amountMarketing); // Send to team uint256 amountTeam = amountFee.mul(_teamFeeCollected).div(amountToSwap); if(amountTeam > 0) sendViaCall(payable(teamWallet), amountTeam); // Send to LP uint256 amountETHLiquidity = address(this).balance; uint256 amountToLiquify = _LPFeeCollected.sub(halfLPFee); if(amountToLiquify > 0){ _approve(address(this), address(router), amountToLiquify); router.addLiquidityETH{value: amountETHLiquidity}( address(this), amountToLiquify, 0, 0, LPWallet, block.timestamp ); emit AutoLiquify(amountETHLiquidity, amountToLiquify); } _marketingFeeCollected = 0; _teamFeeCollected = 0; _LPFeeCollected = 0; emit Swap(amountToSwap, amountFee); } function _getReflectionRate() private view returns (uint256) { uint256 reflectionSupply = _reflectionTotal; uint256 tokenSupply = _tokenTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_reflectionBalance[_excluded[i]] > reflectionSupply || _tokenBalance[_excluded[i]] > tokenSupply) return _reflectionTotal.div(_tokenTotal); reflectionSupply = reflectionSupply.sub(_reflectionBalance[_excluded[i]]); tokenSupply = tokenSupply.sub(_tokenBalance[_excluded[i]]); } if (reflectionSupply < _reflectionTotal.div(_tokenTotal)) return _reflectionTotal.div(_tokenTotal); return reflectionSupply.div(tokenSupply); } function setPairAndRouter(address _pair, IUniswapV2Router02 _router) external onlyOwner { pair = _pair; router = _router; } function setTaxless(address account, bool value) external onlyOwner { isTaxless[account] = value; } function setMaxTxExempt(address account, bool value) external onlyOwner { isMaxTxExempt[account] = value; } function setSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; SwapUpdated(enabled); } function setFeeActive(bool value) external onlyOwner { isFeeActive = value; } function setTaxFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner { _taxFee[0] = buy; _taxFee[1] = sell; _taxFee[2] = p2p; } function setTeamFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner { _teamFee[0] = buy; _teamFee[1] = sell; _teamFee[2] = p2p; } function setLPFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner { _LPFee[0] = buy; _LPFee[1] = sell; _LPFee[2] = p2p; } function setMarketingFee(uint256 buy, uint256 sell, uint256 p2p) external onlyOwner { _marketingFee[0] = buy; _marketingFee[1] = sell; _marketingFee[2] = p2p; } function setMarketingWallet(address wallet) external onlyOwner { marketingWallet = wallet; } function setTeamWallet(address wallet) external onlyOwner { teamWallet = wallet; } function setLPWallet(address wallet) external onlyOwner { LPWallet = wallet; } function setMaxWalletAmount(uint256 percentage) external onlyOwner { maxWalletAmount = _tokenTotal.mul(percentage).div(10000); } function setMaxTxAmount(uint256 percentage) external onlyOwner { maxTxAmount = _tokenTotal.mul(percentage).div(10000); } function setMinTokensBeforeSwap(uint256 amount) external onlyOwner { minTokensBeforeSwap = amount; } function setBlacklist(address account, bool isBlacklisted) external onlyOwner { blacklist[account] = isBlacklisted; } function multiBlacklist(address[] memory addresses, bool _bool) external onlyOwner { for (uint256 i = 0;i < addresses.length; i++){ blacklist[addresses[i]] = _bool; } } function launch() public onlyOwner { require(launchedAt == 0, "Already launched boi"); launchedAt = block.number; launchedAtTimestamp = block.timestamp; } function launched() internal view returns (bool) { return launchedAt != 0; } receive() external payable {} }
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":"amountETH","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountBOG","type":"uint256"}],"name":"AutoLiquify","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":"swaped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"recieved","type":"uint256"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapUpdated","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":"LPWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_LPFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeDecimal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_teamFee","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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","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":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMaxTxExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTaxless","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAtTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokensBeforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"_bool","type":"bool"}],"name":"multiBlacklist","outputs":[],"stateMutability":"nonpayable","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setLPFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setLPWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMaxTxExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"contract IUniswapV2Router02","name":"_router","type":"address"}],"name":"setPairAndRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxless","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buy","type":"uint256"},{"internalType":"uint256","name":"sell","type":"uint256"},{"internalType":"uint256","name":"p2p","type":"uint256"}],"name":"setTeamFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflectionAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600960808190526822b637b72937b3b0b760b91b60a09081526200002c916002919062000bc4565b506040805180820190915260028082526122a960f11b6020909201918252620000589160039162000bc4565b506004805460ff191660091790556705d423c655aa0000600881905560001906196009556002600f55601880546201000062ff00ff19909116179055600854620000cc9061271090620000b89082620005f2602090811b62001f7d17901c565b6200065960201b62001fd61790919060201c565b601955600854601a55652632e314a000601b556000602155348015620000f157600080fd5b506000620000fe620006a3565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001a257600080fd5b505afa158015620001b7573d6000803e3d6000fd5b505050506040513d6020811015620001ce57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200021f57600080fd5b505afa15801562000234573d6000803e3d6000fd5b505050506040513d60208110156200024b57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200029e57600080fd5b505af1158015620002b3573d6000803e3d6000fd5b505050506040513d6020811015620002ca57600080fd5b5051602080546001600160a01b039283166001600160a01b0319918216178255601f8054858516908316178155601c80548316735fa96ba5be4c5eaf555cd44e9f60d24ed63cad9c178155601d80548416731ccf131fe646152bbe1c3ac5d4677325c75e2ea9178155601e8054909416733ae950fd4bbfb2431ace80e7e33dc6d9ab5f5c11178455336000818152600a87526040808220805460ff19908116600190811790925595548a168352818320805487168217905593548916825280822080548616851790559554881681528581208054851684179055308082528682208054861685179055918152600b87528581208054851684179055865488168152858120805485168417905593548716845284842080548416831790558352929091208054909116909117905554620004049116620006a8565b6200040f30620006a8565b601c5462000426906001600160a01b0316620006a8565b601d546200043d906001600160a01b0316620006a8565b601e5462000454906001600160a01b0316620006a8565b620004606000620006a8565b6200046d61dead620006a8565b6009543360008181526005602090815260408083209490945560085484519081529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350601080546001818101835560007f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6729283018190558354808301855560699084018190558454808401909555939092018290556011805480830182557f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c689081018590558154808401835581018490558154808401909255018290556012805480830182557fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34449081018490558154808401835581018590558154808401909255018290556013805480830182558184527f66de8ffda797e3de9c05e8fc57b3bf0ec28a930d40b0d285d93c06501cf6a09090810194909455805480830182558401839055805491820190559091015562000c60565b600082620006035750600062000653565b828202828482816200061157fe5b0414620006505760405162461bcd60e51b815260040180806020018281038252602181526020018062003f766021913960400191505060405180910390fd5b90505b92915050565b60006200065083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200082760201b60201c565b335b90565b620006b2620006a3565b6000546001600160a01b0390811691161462000715576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b601f546001600160a01b0382811691161415620007645760405162461bcd60e51b815260040180806020018281038252602981526020018062003f976029913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205415620007c1576001600160a01b038116600090815260056020526040902054620007a790620008ce565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600c60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319169091179055565b60008183620008b75760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200087b57818101518382015260200162000861565b50505050905090810190601f168015620008a95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581620008c457fe5b0495945050505050565b6000600954821115620009135760405162461bcd60e51b815260040180806020018281038252602a81526020018062003f4c602a913960400191505060405180910390fd5b60006200091f62000942565b90506200093b81846200065960201b62001fd61790919060201c565b9392505050565b60095460085460009190825b600d5481101562000aad578260056000600d84815481106200096c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180620009d357508160066000600d8481548110620009ac57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1562000a0257620009f76008546009546200065960201b62001fd61790919060201c565b9350505050620006a5565b62000a5160056000600d848154811062000a1857fe5b60009182526020808320909101546001600160a01b0316835282810193909352604090910190205485916200201862000b1d821b17901c565b925062000aa260066000600d848154811062000a6957fe5b60009182526020808320909101546001600160a01b0316835282810193909352604090910190205484916200201862000b1d821b17901c565b91506001016200094e565b5062000acc6008546009546200065960201b62001fd61790919060201c565b82101562000afc5762000af26008546009546200065960201b62001fd61790919060201c565b92505050620006a5565b62000b1681836200065960201b62001fd61790919060201c565b9250505090565b60006200065083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062000b6760201b60201c565b6000818484111562000bbc5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156200087b57818101518382015260200162000861565b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000c0757805160ff191683800117855562000c37565b8280016001018555821562000c37579182015b8281111562000c3757825182559160200191906001019062000c1a565b5062000c4592915062000c49565b5090565b5b8082111562000c45576000815560010162000c4a565b6132dc8062000c706000396000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063b7bfff65116100f7578063e43504da11610095578063f2cc0c181161006f578063f2cc0c1814610ce8578063f2fde38b14610d1b578063f887ea4014610d4e578063f9f92be414610d6357610376565b8063e43504da14610c94578063e5d41c6b14610ca9578063ec28438a14610cbe57610376565b8063c6d2577d116100d1578063c6d2577d14610be5578063cba0e99614610bfa578063dd62ed3e14610c2d578063e01af92c14610c6857610376565b8063b7bfff6514610b71578063bf56b37114610b9d578063c1ec8d4b14610bb257610376565b8063a457c2d711610164578063a8aa1b311161013e578063a8aa1b3114610ad8578063a9059cbb14610aed578063a918299c14610b26578063aa4bde2814610b5c57610376565b8063a457c2d7146109ba578063a4a3ce12146109f3578063a5ae2d2f14610aa557610376565b806394169e0d116101a057806394169e0d1461090a57806395d89b411461094057806396c1733414610955578063a40ade851461097f57610376565b80638da5cb5b146108b657806391cc19c2146108cb57806392bfe8b9146108f557610376565b8063324c3454116102a05780635d098b381161023e578063715018a611610218578063715018a61461083c57806375f0a874146108515780637d7d3aaf146108665780638c0b5e22146108a157610376565b80635d098b38146107c15780636ddd1713146107f457806370a082311461080957610376565b8063455fdd781161027a578063455fdd781461070157806347f2dc5b1461072b57806348a4647314610766578063599270441461079057610376565b8063324c34541461065f57806339509351146106955780633b0aacbc146106ce57610376565b8063153b0d1e1161030d57806323b872dd116102e757806323b872dd1461059d57806327a14fc2146105e05780632d8381191461060a578063313ce5671461063457610376565b8063153b0d1e1461053857806318160ddd1461057357806319db457d1461058857610376565b80630ed6a4e2116103495780630ed6a4e2146104695780631185c1d51461049f5780631392c086146104db5780631525ff7d1461050557610376565b806301339c211461037b57806306fdde0314610392578063095ea7b31461041c57610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d96565b005b34801561039e57600080fd5b506103a7610e44565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103e15781810151838201526020016103c9565b50505050905090810190601f16801561040e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561042857600080fd5b506104556004803603604081101561043f57600080fd5b506001600160a01b038135169060200135610ed8565b604080519115158252519081900360200190f35b34801561047557600080fd5b506103906004803603606081101561048c57600080fd5b5080359060208101359060400135610ef6565b3480156104ab57600080fd5b506104c9600480360360208110156104c257600080fd5b5035610fa8565b60408051918252519081900360200190f35b3480156104e757600080fd5b506104c9600480360360208110156104fe57600080fd5b5035610fc6565b34801561051157600080fd5b506103906004803603602081101561052857600080fd5b50356001600160a01b0316611039565b34801561054457600080fd5b506103906004803603604081101561055b57600080fd5b506001600160a01b03813516906020013515156110b3565b34801561057f57600080fd5b506104c9611136565b34801561059457600080fd5b506104c961113c565b3480156105a957600080fd5b50610455600480360360608110156105c057600080fd5b506001600160a01b03813581169160208101359091169060400135611142565b3480156105ec57600080fd5b506103906004803603602081101561060357600080fd5b50356111c9565b34801561061657600080fd5b506104c96004803603602081101561062d57600080fd5b5035611248565b34801561064057600080fd5b506106496112a8565b6040805160ff9092168252519081900360200190f35b34801561066b57600080fd5b506103906004803603606081101561068257600080fd5b50803590602081013590604001356112b1565b3480156106a157600080fd5b50610455600480360360408110156106b857600080fd5b506001600160a01b038135169060200135611352565b3480156106da57600080fd5b50610390600480360360208110156106f157600080fd5b50356001600160a01b03166113a0565b34801561070d57600080fd5b506104c96004803603602081101561072457600080fd5b503561141a565b34801561073757600080fd5b506103906004803603604081101561074e57600080fd5b506001600160a01b0381351690602001351515611427565b34801561077257600080fd5b506103906004803603602081101561078957600080fd5b50356114aa565b34801561079c57600080fd5b506107a5611507565b604080516001600160a01b039092168252519081900360200190f35b3480156107cd57600080fd5b50610390600480360360208110156107e457600080fd5b50356001600160a01b0316611516565b34801561080057600080fd5b50610455611590565b34801561081557600080fd5b506104c96004803603602081101561082c57600080fd5b50356001600160a01b031661159f565b34801561084857600080fd5b50610390611601565b34801561085d57600080fd5b506107a56116a3565b34801561087257600080fd5b506103906004803603604081101561088957600080fd5b506001600160a01b03813516906020013515156116b2565b3480156108ad57600080fd5b506104c9611735565b3480156108c257600080fd5b506107a561173b565b3480156108d757600080fd5b506104c9600480360360208110156108ee57600080fd5b503561174a565b34801561090157600080fd5b506107a5611757565b34801561091657600080fd5b506103906004803603606081101561092d57600080fd5b5080359060208101359060400135611766565b34801561094c57600080fd5b506103a7611807565b34801561096157600080fd5b506104c96004803603602081101561097857600080fd5b5035611868565b34801561098b57600080fd5b50610390600480360360408110156109a257600080fd5b506001600160a01b0381358116916020013516611875565b3480156109c657600080fd5b50610455600480360360408110156109dd57600080fd5b506001600160a01b0381351690602001356118fb565b3480156109ff57600080fd5b5061039060048036036040811015610a1657600080fd5b810190602081018135640100000000811115610a3157600080fd5b820183602082011115610a4357600080fd5b80359060200191846020830284011164010000000083111715610a6557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505050503515159050611963565b348015610ab157600080fd5b5061045560048036036020811015610ac857600080fd5b50356001600160a01b0316611a17565b348015610ae457600080fd5b506107a5611a2c565b348015610af957600080fd5b5061045560048036036040811015610b1057600080fd5b506001600160a01b038135169060200135611a3b565b348015610b3257600080fd5b5061039060048036036060811015610b4957600080fd5b5080359060208101359060400135611a4f565b348015610b6857600080fd5b506104c9611af0565b348015610b7d57600080fd5b5061039060048036036020811015610b9457600080fd5b50351515611af6565b348015610ba957600080fd5b506104c9611b61565b348015610bbe57600080fd5b5061045560048036036020811015610bd557600080fd5b50356001600160a01b0316611b67565b348015610bf157600080fd5b506104c9611b7c565b348015610c0657600080fd5b5061045560048036036020811015610c1d57600080fd5b50356001600160a01b0316611b82565b348015610c3957600080fd5b506104c960048036036040811015610c5057600080fd5b506001600160a01b0381358116916020013516611ba0565b348015610c7457600080fd5b5061039060048036036020811015610c8b57600080fd5b50351515611bcb565b348015610ca057600080fd5b50610455611c74565b348015610cb557600080fd5b506104c9611c7d565b348015610cca57600080fd5b5061039060048036036020811015610ce157600080fd5b5035611c83565b348015610cf457600080fd5b5061039060048036036020811015610d0b57600080fd5b50356001600160a01b0316611cfc565b348015610d2757600080fd5b5061039060048036036020811015610d3e57600080fd5b50356001600160a01b0316611e61565b348015610d5a57600080fd5b506107a5611f59565b348015610d6f57600080fd5b5061045560048036036020811015610d8657600080fd5b50356001600160a01b0316611f68565b610d9e61205a565b6000546001600160a01b03908116911614610dee576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b60215415610e3a576040805162461bcd60e51b8152602060048201526014602482015273416c7265616479206c61756e6368656420626f6960601b604482015290519081900360640190fd5b4360215542602255565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610ecd5780601f10610ea257610100808354040283529160200191610ecd565b820191906000526020600020905b815481529060010190602001808311610eb057829003601f168201915b505050505090505b90565b6000610eec610ee561205a565b848461205e565b5060015b92915050565b610efe61205a565b6000546001600160a01b03908116911614610f4e576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b826013600081548110610f5d57fe5b9060005260206000200181905550816013600181548110610f7a57fe5b9060005260206000200181905550806013600281548110610f9757fe5b600091825260209091200155505050565b60108181548110610fb557fe5b600091825260209091200154905081565b600060085482111561101f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b61103161102a61214a565b8390611f7d565b90505b919050565b61104161205a565b6000546001600160a01b03908116911614611091576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6110bb61205a565b6000546001600160a01b0390811691161461110b576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b60085490565b600f5481565b600061114f8484846122c1565b6111bf8461115b61205a565b6111ba8560405180606001604052806028815260200161319f602891396001600160a01b038a1660009081526007602052604081209061119961205a565b6001600160a01b031681526020810191909152604001600020549190612827565b61205e565b5060019392505050565b6111d161205a565b6000546001600160a01b03908116911614611221576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b61124261271061123c83600854611f7d90919063ffffffff16565b90611fd6565b60195550565b600060095482111561128b5760405162461bcd60e51b815260040180806020018281038252602a8152602001806130e9602a913960400191505060405180910390fd5b600061129561214a565b90506112a18382611fd6565b9392505050565b60045460ff1690565b6112b961205a565b6000546001600160a01b03908116911614611309576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b82601060008154811061131857fe5b906000526020600020018190555081601060018154811061133557fe5b9060005260206000200181905550806010600281548110610f9757fe5b6000610eec61135f61205a565b846111ba856007600061137061205a565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906128be565b6113a861205a565b6000546001600160a01b039081169116146113f8576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b601e80546001600160a01b0319166001600160a01b0392909216919091179055565b60128181548110610fb557fe5b61142f61205a565b6000546001600160a01b0390811691161461147f576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6114b261205a565b6000546001600160a01b03908116911614611502576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b601b55565b601d546001600160a01b031681565b61151e61205a565b6000546001600160a01b0390811691161461156e576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b60185462010000900460ff1681565b6001600160a01b0381166000908152600c602052604081205460ff16156115df57506001600160a01b038116600090815260066020526040902054611034565b6001600160a01b03821660009081526005602052604090205461103190611248565b61160961205a565b6000546001600160a01b03908116911614611659576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b601c546001600160a01b031681565b6116ba61205a565b6000546001600160a01b0390811691161461170a576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b601a5481565b6000546001600160a01b031690565b60118181548110610fb557fe5b601e546001600160a01b031681565b61176e61205a565b6000546001600160a01b039081169116146117be576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b8260126000815481106117cd57fe5b90600052602060002001819055508160126001815481106117ea57fe5b9060005260206000200181905550806012600281548110610f9757fe5b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ecd5780601f10610ea257610100808354040283529160200191610ecd565b60138181548110610fb557fe5b61187d61205a565b6000546001600160a01b039081169116146118cd576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b602080546001600160a01b039384166001600160a01b031991821617909155601f8054929093169116179055565b6000610eec61190861205a565b846111ba85604051806060016040528060258152602001613282602591396007600061193261205a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612827565b61196b61205a565b6000546001600160a01b039081169116146119bb576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b60005b8251811015611a125781600e60008584815181106119d857fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016119be565b505050565b600a6020526000908152604090205460ff1681565b6020546001600160a01b031681565b6000610eec611a4861205a565b84846122c1565b611a5761205a565b6000546001600160a01b03908116911614611aa7576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b826011600081548110611ab657fe5b9060005260206000200181905550816011600181548110611ad357fe5b9060005260206000200181905550806011600281548110610f9757fe5b60195481565b611afe61205a565b6000546001600160a01b03908116911614611b4e576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b6018805460ff1916911515919091179055565b60215481565b600b6020526000908152604090205460ff1681565b60225481565b6001600160a01b03166000908152600c602052604090205460ff1690565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b611bd361205a565b6000546001600160a01b03908116911614611c23576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b6018805482151562010000810262ff0000199092169190911790915560408051918252517fd2b6af97bbcf94796ee3844c1f0948ba30b3f2d496875e5e1587309eb210aac59181900360200190a150565b60185460ff1681565b601b5481565b611c8b61205a565b6000546001600160a01b03908116911614611cdb576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b611cf661271061123c83600854611f7d90919063ffffffff16565b601a5550565b611d0461205a565b6000546001600160a01b03908116911614611d54576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b601f546001600160a01b0382811691161415611da15760405162461bcd60e51b81526004018080602001828103825260298152602001806132106029913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205415611dfb576001600160a01b038116600090815260056020526040902054611de190611248565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600c60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319169091179055565b611e6961205a565b6000546001600160a01b03908116911614611eb9576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b6001600160a01b038116611efe5760405162461bcd60e51b81526004018080602001828103825260268152602001806131136026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b601f546001600160a01b031681565b600e6020526000908152604090205460ff1681565b600082611f8c57506000610ef0565b82820282848281611f9957fe5b04146112a15760405162461bcd60e51b815260040180806020018281038252602181526020018061317e6021913960400191505060405180910390fd5b60006112a183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612918565b60006112a183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612827565b3390565b6001600160a01b0383166120a35760405162461bcd60e51b815260040180806020018281038252602481526020018061325e6024913960400191505060405180910390fd5b6001600160a01b0382166120e85760405162461bcd60e51b81526004018080602001828103825260228152602001806131396022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60095460085460009190825b600d54811015612281578260056000600d848154811061217257fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121d757508160066000600d84815481106121b057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156121f5576008546009546121eb91611fd6565b9350505050610ed5565b61223560056000600d848154811061220957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612018565b925061227760066000600d848154811061224b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612018565b9150600101612156565b5060085460095461229191611fd6565b8210156122b0576008546009546122a791611fd6565b92505050610ed5565b6122ba8282611fd6565b9250505090565b6001600160a01b0383166123065760405162461bcd60e51b81526004018080602001828103825260258152602001806132396025913960400191505060405180910390fd5b6001600160a01b03821661234b5760405162461bcd60e51b81526004018080602001828103825260238152602001806130c66023913960400191505060405180910390fd5b6000811161238a5760405162461bcd60e51b81526004018080602001828103825260298152602001806131e76029913960400191505060405180910390fd5b6001600160a01b0383166000908152600a602052604090205460ff16806123c957506001600160a01b0382166000908152600a602052604090205460ff165b806123e157506020546001600160a01b038381169116145b8061240057506019546123fd826123f78561159f565b906128be565b11155b612451576040805162461bcd60e51b815260206004820152601960248201527f4d61782057616c6c6574204c696d697420457863656564732100000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600b602052604090205460ff168061247a5750601a548111155b6124cb576040805162461bcd60e51b815260206004820152601760248201527f5472616e736665722065786365656473206c696d697421000000000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600e602052604090205460ff1615801561250d57506001600160a01b0382166000908152600e602052604090205460ff16155b6125485760405162461bcd60e51b815260040180806020018281038252602381526020018061315b6023913960400191505060405180910390fd5b60185462010000900460ff1680156125685750601854610100900460ff16155b801561258257506020546001600160a01b03848116911614155b1561258f5761258f61297d565b612597612d9b565b1580156125b157506020546001600160a01b038481169116145b156125da576001600160a01b0382166000908152600e60205260409020805460ff191660011790555b8060006125e561214a565b60185490915060ff16801561261357506001600160a01b0385166000908152600a602052604090205460ff16155b801561263857506001600160a01b0384166000908152600a602052604090205460ff16155b801561264c5750601854610100900460ff16155b1561269557602054612692908690859084906001600160a01b0390811689821681149185161480159061268d57506020546001600160a01b038a8116911614155b612da3565b91505b6126c16126a28483611f7d565b6001600160a01b03871660009081526005602052604090205490612018565b6001600160a01b0386166000908152600560205260409020556127066126e78383611f7d565b6001600160a01b038616600090815260056020526040902054906128be565b6001600160a01b038086166000908152600560209081526040808320949094559188168152600c909152205460ff1615612777576001600160a01b03851660009081526006602052604090205461275d9084612018565b6001600160a01b0386166000908152600660205260409020555b6001600160a01b0384166000908152600c602052604090205460ff16156127d5576001600160a01b0384166000908152600660205260409020546127bb90836128be565b6001600160a01b0385166000908152600660205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b600081848411156128b65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561287b578181015183820152602001612863565b50505050905090810190601f1680156128a85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156112a1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081836129675760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561287b578181015183820152602001612863565b50600083858161297357fe5b0495945050505050565b6018805461ff0019166101001790556017546015546016546000926129a79290916123f7916128be565b905060006129c16002601754611fd690919063ffffffff16565b905060006129e06016546123f7601554856128be90919063ffffffff16565b905082601b5411156129f457505050612d8e565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612a2257fe5b6001600160a01b03928316602091820292909201810191909152601f54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612a7657600080fd5b505afa158015612a8a573d6000803e3d6000fd5b505050506040513d6020811015612aa057600080fd5b5051815182906001908110612ab157fe5b6001600160a01b039283166020918202929092010152601f544791612ad9913091168561205e565b601f5460405163791ac94760e01b8152600481018581526000602483018190523060648401819052426084850181905260a060448601908152885160a487015288516001600160a01b039097169663791ac947968b968b9594939092909160c40190602080880191028083838b5b83811015612b5f578181015183820152602001612b47565b505050509050019650505050505050600060405180830381600087803b158015612b8857600080fd5b505af1158015612b9c573d6000803e3d6000fd5b505050506000612bb5824761201890919063ffffffff16565b90506000612bd28561123c60155485611f7d90919063ffffffff16565b90508015612bf057601c54612bf0906001600160a01b031682612ee4565b6000612c0b8661123c60165486611f7d90919063ffffffff16565b90508015612c2957601d54612c29906001600160a01b031682612ee4565b6017544790600090612c3b908a612018565b90508015612d3957601f54612c5b9030906001600160a01b03168361205e565b601f54601e546040805163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991859160c48082019260609290919082900301818588803b158015612cd057600080fd5b505af1158015612ce4573d6000803e3d6000fd5b50505050506040513d6060811015612cfb57600080fd5b5050604080518381526020810183905281517f424db2872186fa7e7afa7a5e902ed3b49a2ef19c2f5431e672462495dd6b4506929181900390910190a15b600060158190556016819055601755604080518981526020810187905281517f015fc8ee969fd902d9ebd12a31c54446400a2b512a405366fe14defd6081d220929181900390910190a1505050505050505050505b6018805461ff0019169055565b602154151590565b6000848180612dd085612dc45786612dbc576000612dbf565b60015b612dc7565b60025b60ff1689612f8b565b9150915080600014612e9b57612de68382612018565b9250612e0b612df58289611f7d565b30600090815260056020526040902054906128be565b30600090815260056020908152604080832093909355600c9052205460ff1615612e5a5730600090815260066020526040902054612e4990826128be565b306000908152600660205260409020555b60408051828152905130916001600160a01b038c16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35b8115612ebb57612eb7612eae8389611f7d565b60095490612018565b6009555b612ed4816123f7846014546128be90919063ffffffff16565b6014555090979650505050505050565b6040516000906060906001600160a01b0385169084908481818185875af1925050503d8060008114612f32576040519150601f19603f3d011682016040523d82523d6000602084013e612f37565b606091505b509150915081612f85576040805162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b604482015290519081900360640190fd5b50505050565b6000806000612fc6600f54600201600a0a61123c60108881548110612fac57fe5b906000526020600020015487611f7d90919063ffffffff16565b90506000613000600f54600201600a0a61123c60118981548110612fe657fe5b906000526020600020015488611f7d90919063ffffffff16565b9050600061303a600f54600201600a0a61123c60128a8154811061302057fe5b906000526020600020015489611f7d90919063ffffffff16565b90506000613074600f54600201600a0a61123c60138b8154811061305a57fe5b90600052602060002001548a611f7d90919063ffffffff16565b60155490915061308490846128be565b60155560165461309490836128be565b6016556017546130a490826128be565b601755836130b6826123f786866128be565b9550955050505050925092905056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737373656e646572206f7220726563697069656e7420697320626c61636b6c697374656421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220259079bf4b3932dc71ce6a65b05c2f09d107eead9c5262d9141f10b88a0fc0fd64736f6c634300060c0033416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e
Deployed Bytecode
0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063b7bfff65116100f7578063e43504da11610095578063f2cc0c181161006f578063f2cc0c1814610ce8578063f2fde38b14610d1b578063f887ea4014610d4e578063f9f92be414610d6357610376565b8063e43504da14610c94578063e5d41c6b14610ca9578063ec28438a14610cbe57610376565b8063c6d2577d116100d1578063c6d2577d14610be5578063cba0e99614610bfa578063dd62ed3e14610c2d578063e01af92c14610c6857610376565b8063b7bfff6514610b71578063bf56b37114610b9d578063c1ec8d4b14610bb257610376565b8063a457c2d711610164578063a8aa1b311161013e578063a8aa1b3114610ad8578063a9059cbb14610aed578063a918299c14610b26578063aa4bde2814610b5c57610376565b8063a457c2d7146109ba578063a4a3ce12146109f3578063a5ae2d2f14610aa557610376565b806394169e0d116101a057806394169e0d1461090a57806395d89b411461094057806396c1733414610955578063a40ade851461097f57610376565b80638da5cb5b146108b657806391cc19c2146108cb57806392bfe8b9146108f557610376565b8063324c3454116102a05780635d098b381161023e578063715018a611610218578063715018a61461083c57806375f0a874146108515780637d7d3aaf146108665780638c0b5e22146108a157610376565b80635d098b38146107c15780636ddd1713146107f457806370a082311461080957610376565b8063455fdd781161027a578063455fdd781461070157806347f2dc5b1461072b57806348a4647314610766578063599270441461079057610376565b8063324c34541461065f57806339509351146106955780633b0aacbc146106ce57610376565b8063153b0d1e1161030d57806323b872dd116102e757806323b872dd1461059d57806327a14fc2146105e05780632d8381191461060a578063313ce5671461063457610376565b8063153b0d1e1461053857806318160ddd1461057357806319db457d1461058857610376565b80630ed6a4e2116103495780630ed6a4e2146104695780631185c1d51461049f5780631392c086146104db5780631525ff7d1461050557610376565b806301339c211461037b57806306fdde0314610392578063095ea7b31461041c57610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d96565b005b34801561039e57600080fd5b506103a7610e44565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103e15781810151838201526020016103c9565b50505050905090810190601f16801561040e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561042857600080fd5b506104556004803603604081101561043f57600080fd5b506001600160a01b038135169060200135610ed8565b604080519115158252519081900360200190f35b34801561047557600080fd5b506103906004803603606081101561048c57600080fd5b5080359060208101359060400135610ef6565b3480156104ab57600080fd5b506104c9600480360360208110156104c257600080fd5b5035610fa8565b60408051918252519081900360200190f35b3480156104e757600080fd5b506104c9600480360360208110156104fe57600080fd5b5035610fc6565b34801561051157600080fd5b506103906004803603602081101561052857600080fd5b50356001600160a01b0316611039565b34801561054457600080fd5b506103906004803603604081101561055b57600080fd5b506001600160a01b03813516906020013515156110b3565b34801561057f57600080fd5b506104c9611136565b34801561059457600080fd5b506104c961113c565b3480156105a957600080fd5b50610455600480360360608110156105c057600080fd5b506001600160a01b03813581169160208101359091169060400135611142565b3480156105ec57600080fd5b506103906004803603602081101561060357600080fd5b50356111c9565b34801561061657600080fd5b506104c96004803603602081101561062d57600080fd5b5035611248565b34801561064057600080fd5b506106496112a8565b6040805160ff9092168252519081900360200190f35b34801561066b57600080fd5b506103906004803603606081101561068257600080fd5b50803590602081013590604001356112b1565b3480156106a157600080fd5b50610455600480360360408110156106b857600080fd5b506001600160a01b038135169060200135611352565b3480156106da57600080fd5b50610390600480360360208110156106f157600080fd5b50356001600160a01b03166113a0565b34801561070d57600080fd5b506104c96004803603602081101561072457600080fd5b503561141a565b34801561073757600080fd5b506103906004803603604081101561074e57600080fd5b506001600160a01b0381351690602001351515611427565b34801561077257600080fd5b506103906004803603602081101561078957600080fd5b50356114aa565b34801561079c57600080fd5b506107a5611507565b604080516001600160a01b039092168252519081900360200190f35b3480156107cd57600080fd5b50610390600480360360208110156107e457600080fd5b50356001600160a01b0316611516565b34801561080057600080fd5b50610455611590565b34801561081557600080fd5b506104c96004803603602081101561082c57600080fd5b50356001600160a01b031661159f565b34801561084857600080fd5b50610390611601565b34801561085d57600080fd5b506107a56116a3565b34801561087257600080fd5b506103906004803603604081101561088957600080fd5b506001600160a01b03813516906020013515156116b2565b3480156108ad57600080fd5b506104c9611735565b3480156108c257600080fd5b506107a561173b565b3480156108d757600080fd5b506104c9600480360360208110156108ee57600080fd5b503561174a565b34801561090157600080fd5b506107a5611757565b34801561091657600080fd5b506103906004803603606081101561092d57600080fd5b5080359060208101359060400135611766565b34801561094c57600080fd5b506103a7611807565b34801561096157600080fd5b506104c96004803603602081101561097857600080fd5b5035611868565b34801561098b57600080fd5b50610390600480360360408110156109a257600080fd5b506001600160a01b0381358116916020013516611875565b3480156109c657600080fd5b50610455600480360360408110156109dd57600080fd5b506001600160a01b0381351690602001356118fb565b3480156109ff57600080fd5b5061039060048036036040811015610a1657600080fd5b810190602081018135640100000000811115610a3157600080fd5b820183602082011115610a4357600080fd5b80359060200191846020830284011164010000000083111715610a6557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295505050503515159050611963565b348015610ab157600080fd5b5061045560048036036020811015610ac857600080fd5b50356001600160a01b0316611a17565b348015610ae457600080fd5b506107a5611a2c565b348015610af957600080fd5b5061045560048036036040811015610b1057600080fd5b506001600160a01b038135169060200135611a3b565b348015610b3257600080fd5b5061039060048036036060811015610b4957600080fd5b5080359060208101359060400135611a4f565b348015610b6857600080fd5b506104c9611af0565b348015610b7d57600080fd5b5061039060048036036020811015610b9457600080fd5b50351515611af6565b348015610ba957600080fd5b506104c9611b61565b348015610bbe57600080fd5b5061045560048036036020811015610bd557600080fd5b50356001600160a01b0316611b67565b348015610bf157600080fd5b506104c9611b7c565b348015610c0657600080fd5b5061045560048036036020811015610c1d57600080fd5b50356001600160a01b0316611b82565b348015610c3957600080fd5b506104c960048036036040811015610c5057600080fd5b506001600160a01b0381358116916020013516611ba0565b348015610c7457600080fd5b5061039060048036036020811015610c8b57600080fd5b50351515611bcb565b348015610ca057600080fd5b50610455611c74565b348015610cb557600080fd5b506104c9611c7d565b348015610cca57600080fd5b5061039060048036036020811015610ce157600080fd5b5035611c83565b348015610cf457600080fd5b5061039060048036036020811015610d0b57600080fd5b50356001600160a01b0316611cfc565b348015610d2757600080fd5b5061039060048036036020811015610d3e57600080fd5b50356001600160a01b0316611e61565b348015610d5a57600080fd5b506107a5611f59565b348015610d6f57600080fd5b5061045560048036036020811015610d8657600080fd5b50356001600160a01b0316611f68565b610d9e61205a565b6000546001600160a01b03908116911614610dee576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b60215415610e3a576040805162461bcd60e51b8152602060048201526014602482015273416c7265616479206c61756e6368656420626f6960601b604482015290519081900360640190fd5b4360215542602255565b60028054604080516020601f6000196101006001871615020190941685900493840181900481028201810190925282815260609390929091830182828015610ecd5780601f10610ea257610100808354040283529160200191610ecd565b820191906000526020600020905b815481529060010190602001808311610eb057829003601f168201915b505050505090505b90565b6000610eec610ee561205a565b848461205e565b5060015b92915050565b610efe61205a565b6000546001600160a01b03908116911614610f4e576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b826013600081548110610f5d57fe5b9060005260206000200181905550816013600181548110610f7a57fe5b9060005260206000200181905550806013600281548110610f9757fe5b600091825260209091200155505050565b60108181548110610fb557fe5b600091825260209091200154905081565b600060085482111561101f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b61103161102a61214a565b8390611f7d565b90505b919050565b61104161205a565b6000546001600160a01b03908116911614611091576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6110bb61205a565b6000546001600160a01b0390811691161461110b576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b60085490565b600f5481565b600061114f8484846122c1565b6111bf8461115b61205a565b6111ba8560405180606001604052806028815260200161319f602891396001600160a01b038a1660009081526007602052604081209061119961205a565b6001600160a01b031681526020810191909152604001600020549190612827565b61205e565b5060019392505050565b6111d161205a565b6000546001600160a01b03908116911614611221576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b61124261271061123c83600854611f7d90919063ffffffff16565b90611fd6565b60195550565b600060095482111561128b5760405162461bcd60e51b815260040180806020018281038252602a8152602001806130e9602a913960400191505060405180910390fd5b600061129561214a565b90506112a18382611fd6565b9392505050565b60045460ff1690565b6112b961205a565b6000546001600160a01b03908116911614611309576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b82601060008154811061131857fe5b906000526020600020018190555081601060018154811061133557fe5b9060005260206000200181905550806010600281548110610f9757fe5b6000610eec61135f61205a565b846111ba856007600061137061205a565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906128be565b6113a861205a565b6000546001600160a01b039081169116146113f8576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b601e80546001600160a01b0319166001600160a01b0392909216919091179055565b60128181548110610fb557fe5b61142f61205a565b6000546001600160a01b0390811691161461147f576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6114b261205a565b6000546001600160a01b03908116911614611502576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b601b55565b601d546001600160a01b031681565b61151e61205a565b6000546001600160a01b0390811691161461156e576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b601c80546001600160a01b0319166001600160a01b0392909216919091179055565b60185462010000900460ff1681565b6001600160a01b0381166000908152600c602052604081205460ff16156115df57506001600160a01b038116600090815260066020526040902054611034565b6001600160a01b03821660009081526005602052604090205461103190611248565b61160961205a565b6000546001600160a01b03908116911614611659576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b601c546001600160a01b031681565b6116ba61205a565b6000546001600160a01b0390811691161461170a576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b601a5481565b6000546001600160a01b031690565b60118181548110610fb557fe5b601e546001600160a01b031681565b61176e61205a565b6000546001600160a01b039081169116146117be576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b8260126000815481106117cd57fe5b90600052602060002001819055508160126001815481106117ea57fe5b9060005260206000200181905550806012600281548110610f9757fe5b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610ecd5780601f10610ea257610100808354040283529160200191610ecd565b60138181548110610fb557fe5b61187d61205a565b6000546001600160a01b039081169116146118cd576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b602080546001600160a01b039384166001600160a01b031991821617909155601f8054929093169116179055565b6000610eec61190861205a565b846111ba85604051806060016040528060258152602001613282602591396007600061193261205a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612827565b61196b61205a565b6000546001600160a01b039081169116146119bb576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b60005b8251811015611a125781600e60008584815181106119d857fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016119be565b505050565b600a6020526000908152604090205460ff1681565b6020546001600160a01b031681565b6000610eec611a4861205a565b84846122c1565b611a5761205a565b6000546001600160a01b03908116911614611aa7576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b826011600081548110611ab657fe5b9060005260206000200181905550816011600181548110611ad357fe5b9060005260206000200181905550806011600281548110610f9757fe5b60195481565b611afe61205a565b6000546001600160a01b03908116911614611b4e576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b6018805460ff1916911515919091179055565b60215481565b600b6020526000908152604090205460ff1681565b60225481565b6001600160a01b03166000908152600c602052604090205460ff1690565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b611bd361205a565b6000546001600160a01b03908116911614611c23576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b6018805482151562010000810262ff0000199092169190911790915560408051918252517fd2b6af97bbcf94796ee3844c1f0948ba30b3f2d496875e5e1587309eb210aac59181900360200190a150565b60185460ff1681565b601b5481565b611c8b61205a565b6000546001600160a01b03908116911614611cdb576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b611cf661271061123c83600854611f7d90919063ffffffff16565b601a5550565b611d0461205a565b6000546001600160a01b03908116911614611d54576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b601f546001600160a01b0382811691161415611da15760405162461bcd60e51b81526004018080602001828103825260298152602001806132106029913960400191505060405180910390fd5b6001600160a01b03811660009081526005602052604090205415611dfb576001600160a01b038116600090815260056020526040902054611de190611248565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600c60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319169091179055565b611e6961205a565b6000546001600160a01b03908116911614611eb9576040805162461bcd60e51b815260206004820181905260248201526000805160206131c7833981519152604482015290519081900360640190fd5b6001600160a01b038116611efe5760405162461bcd60e51b81526004018080602001828103825260268152602001806131136026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b601f546001600160a01b031681565b600e6020526000908152604090205460ff1681565b600082611f8c57506000610ef0565b82820282848281611f9957fe5b04146112a15760405162461bcd60e51b815260040180806020018281038252602181526020018061317e6021913960400191505060405180910390fd5b60006112a183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612918565b60006112a183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612827565b3390565b6001600160a01b0383166120a35760405162461bcd60e51b815260040180806020018281038252602481526020018061325e6024913960400191505060405180910390fd5b6001600160a01b0382166120e85760405162461bcd60e51b81526004018080602001828103825260228152602001806131396022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60095460085460009190825b600d54811015612281578260056000600d848154811061217257fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806121d757508160066000600d84815481106121b057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156121f5576008546009546121eb91611fd6565b9350505050610ed5565b61223560056000600d848154811061220957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490612018565b925061227760066000600d848154811061224b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612018565b9150600101612156565b5060085460095461229191611fd6565b8210156122b0576008546009546122a791611fd6565b92505050610ed5565b6122ba8282611fd6565b9250505090565b6001600160a01b0383166123065760405162461bcd60e51b81526004018080602001828103825260258152602001806132396025913960400191505060405180910390fd5b6001600160a01b03821661234b5760405162461bcd60e51b81526004018080602001828103825260238152602001806130c66023913960400191505060405180910390fd5b6000811161238a5760405162461bcd60e51b81526004018080602001828103825260298152602001806131e76029913960400191505060405180910390fd5b6001600160a01b0383166000908152600a602052604090205460ff16806123c957506001600160a01b0382166000908152600a602052604090205460ff165b806123e157506020546001600160a01b038381169116145b8061240057506019546123fd826123f78561159f565b906128be565b11155b612451576040805162461bcd60e51b815260206004820152601960248201527f4d61782057616c6c6574204c696d697420457863656564732100000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600b602052604090205460ff168061247a5750601a548111155b6124cb576040805162461bcd60e51b815260206004820152601760248201527f5472616e736665722065786365656473206c696d697421000000000000000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600e602052604090205460ff1615801561250d57506001600160a01b0382166000908152600e602052604090205460ff16155b6125485760405162461bcd60e51b815260040180806020018281038252602381526020018061315b6023913960400191505060405180910390fd5b60185462010000900460ff1680156125685750601854610100900460ff16155b801561258257506020546001600160a01b03848116911614155b1561258f5761258f61297d565b612597612d9b565b1580156125b157506020546001600160a01b038481169116145b156125da576001600160a01b0382166000908152600e60205260409020805460ff191660011790555b8060006125e561214a565b60185490915060ff16801561261357506001600160a01b0385166000908152600a602052604090205460ff16155b801561263857506001600160a01b0384166000908152600a602052604090205460ff16155b801561264c5750601854610100900460ff16155b1561269557602054612692908690859084906001600160a01b0390811689821681149185161480159061268d57506020546001600160a01b038a8116911614155b612da3565b91505b6126c16126a28483611f7d565b6001600160a01b03871660009081526005602052604090205490612018565b6001600160a01b0386166000908152600560205260409020556127066126e78383611f7d565b6001600160a01b038616600090815260056020526040902054906128be565b6001600160a01b038086166000908152600560209081526040808320949094559188168152600c909152205460ff1615612777576001600160a01b03851660009081526006602052604090205461275d9084612018565b6001600160a01b0386166000908152600660205260409020555b6001600160a01b0384166000908152600c602052604090205460ff16156127d5576001600160a01b0384166000908152600660205260409020546127bb90836128be565b6001600160a01b0385166000908152600660205260409020555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a35050505050565b600081848411156128b65760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561287b578181015183820152602001612863565b50505050905090810190601f1680156128a85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156112a1576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081836129675760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561287b578181015183820152602001612863565b50600083858161297357fe5b0495945050505050565b6018805461ff0019166101001790556017546015546016546000926129a79290916123f7916128be565b905060006129c16002601754611fd690919063ffffffff16565b905060006129e06016546123f7601554856128be90919063ffffffff16565b905082601b5411156129f457505050612d8e565b60408051600280825260608083018452926020830190803683370190505090503081600081518110612a2257fe5b6001600160a01b03928316602091820292909201810191909152601f54604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015612a7657600080fd5b505afa158015612a8a573d6000803e3d6000fd5b505050506040513d6020811015612aa057600080fd5b5051815182906001908110612ab157fe5b6001600160a01b039283166020918202929092010152601f544791612ad9913091168561205e565b601f5460405163791ac94760e01b8152600481018581526000602483018190523060648401819052426084850181905260a060448601908152885160a487015288516001600160a01b039097169663791ac947968b968b9594939092909160c40190602080880191028083838b5b83811015612b5f578181015183820152602001612b47565b505050509050019650505050505050600060405180830381600087803b158015612b8857600080fd5b505af1158015612b9c573d6000803e3d6000fd5b505050506000612bb5824761201890919063ffffffff16565b90506000612bd28561123c60155485611f7d90919063ffffffff16565b90508015612bf057601c54612bf0906001600160a01b031682612ee4565b6000612c0b8661123c60165486611f7d90919063ffffffff16565b90508015612c2957601d54612c29906001600160a01b031682612ee4565b6017544790600090612c3b908a612018565b90508015612d3957601f54612c5b9030906001600160a01b03168361205e565b601f54601e546040805163f305d71960e01b81523060048201526024810185905260006044820181905260648201526001600160a01b0392831660848201524260a48201529051919092169163f305d71991859160c48082019260609290919082900301818588803b158015612cd057600080fd5b505af1158015612ce4573d6000803e3d6000fd5b50505050506040513d6060811015612cfb57600080fd5b5050604080518381526020810183905281517f424db2872186fa7e7afa7a5e902ed3b49a2ef19c2f5431e672462495dd6b4506929181900390910190a15b600060158190556016819055601755604080518981526020810187905281517f015fc8ee969fd902d9ebd12a31c54446400a2b512a405366fe14defd6081d220929181900390910190a1505050505050505050505b6018805461ff0019169055565b602154151590565b6000848180612dd085612dc45786612dbc576000612dbf565b60015b612dc7565b60025b60ff1689612f8b565b9150915080600014612e9b57612de68382612018565b9250612e0b612df58289611f7d565b30600090815260056020526040902054906128be565b30600090815260056020908152604080832093909355600c9052205460ff1615612e5a5730600090815260066020526040902054612e4990826128be565b306000908152600660205260409020555b60408051828152905130916001600160a01b038c16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35b8115612ebb57612eb7612eae8389611f7d565b60095490612018565b6009555b612ed4816123f7846014546128be90919063ffffffff16565b6014555090979650505050505050565b6040516000906060906001600160a01b0385169084908481818185875af1925050503d8060008114612f32576040519150601f19603f3d011682016040523d82523d6000602084013e612f37565b606091505b509150915081612f85576040805162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b604482015290519081900360640190fd5b50505050565b6000806000612fc6600f54600201600a0a61123c60108881548110612fac57fe5b906000526020600020015487611f7d90919063ffffffff16565b90506000613000600f54600201600a0a61123c60118981548110612fe657fe5b906000526020600020015488611f7d90919063ffffffff16565b9050600061303a600f54600201600a0a61123c60128a8154811061302057fe5b906000526020600020015489611f7d90919063ffffffff16565b90506000613074600f54600201600a0a61123c60138b8154811061305a57fe5b90600052602060002001548a611f7d90919063ffffffff16565b60155490915061308490846128be565b60155560165461309490836128be565b6016556017546130a490826128be565b601755836130b6826123f786866128be565b9550955050505050925092905056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737373656e646572206f7220726563697069656e7420697320626c61636b6c697374656421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a2057652063616e206e6f74206578636c75646520556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220259079bf4b3932dc71ce6a65b05c2f09d107eead9c5262d9141f10b88a0fc0fd64736f6c634300060c0033
Deployed Bytecode Sourcemap
24326:16728:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40730:186;;;;;;;;;;;;;:::i;:::-;;28121:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29062:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29062:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39273:164;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39273:164:0;;;;;;;;;;;;:::i;25325:24::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25325:24:0;;:::i;:::-;;;;;;;;;;;;;;;;30317:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30317:224:0;;:::i;39759:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39759:97:0;-1:-1:-1;;;;;39759:97:0;;:::i;40379:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40379:131:0;;;;;;;;;;:::i;28398:99::-;;;;;;;;;;;;;:::i;25223:30::-;;;;;;;;;;;;;:::i;29231:407::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29231:407:0;;;;;;;;;;;;;;;;;:::i;39965:142::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39965:142:0;;:::i;30549:299::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30549:299:0;;:::i;28307:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38917:168;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38917:168:0;;;;;;;;;;;;:::i;29646:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29646:218:0;;;;;;;;:::i;39864:93::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39864:93:0;-1:-1:-1;;;;;39864:93:0;;:::i;25393:25::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25393:25:0;;:::i;38432:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38432:113:0;;;;;;;;;;:::i;40257:114::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40257:114:0;;:::i;25938:25::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;25938:25:0;;;;;;;;;;;;;;39645:106;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39645:106:0;-1:-1:-1;;;;;39645:106:0;;:::i;25682:30::-;;;;;;;;;;;;;:::i;28505:215::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28505:215:0;-1:-1:-1;;;;;28505:215:0;;:::i;19227:148::-;;;;;;;;;;;;;:::i;25901:30::-;;;;;;;;;;;;;:::i;38553:121::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38553:121:0;;;;;;;;;;:::i;25800:40::-;;;;;;;;;;;;;:::i;18585:79::-;;;;;;;;;;;;;:::i;25356:30::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25356:30:0;;:::i;25970:23::-;;;;;;;;;;;;;:::i;39093:172::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39093:172:0;;;;;;;;;;;;:::i;28212:87::-;;;;;;;;;;;;;:::i;25425:23::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25425:23:0;;:::i;38278:146::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38278:146:0;;;;;;;;;;:::i;29872:319::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29872:319:0;;;;;;;;:::i;40518:204::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40518:204:0;;-1:-1:-1;;;;40518:204:0;;;;-1:-1:-1;40518:204:0;:::i;24984:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24984:41:0;-1:-1:-1;;;;;24984:41:0;;:::i;26041:19::-;;;;;;;;;;;;;:::i;28728:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28728:175:0;;;;;;;;:::i;39445:192::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39445:192:0;;;;;;;;;;;;:::i;25721:66::-;;;;;;;;;;;;;:::i;38818:91::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38818:91:0;;;;:::i;26069:29::-;;;;;;;;;;;;;:::i;25032:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25032:45:0;-1:-1:-1;;;;;25032:45:0;;:::i;26105:34::-;;;;;;;;;;;;;:::i;30199:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30199:110:0;-1:-1:-1;;;;;30199:110:0;;:::i;28911:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28911:143:0;;;;;;;;;;:::i;38682:128::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38682:128:0;;;;:::i;25618:31::-;;;;;;;;;;;;;:::i;25847:45::-;;;;;;;;;;;;;:::i;40115:134::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40115:134:0;;:::i;30856:457::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30856:457:0;-1:-1:-1;;;;;30856:457:0;;:::i;19530:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19530:244:0;-1:-1:-1;;;;;19530:244:0;;:::i;26002:32::-;;;;;;;;;;;;;:::i;25173:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25173:41:0;-1:-1:-1;;;;;25173:41:0;;:::i;40730:186::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;40784:10:::1;::::0;:15;40776:48:::1;;;::::0;;-1:-1:-1;;;40776:48:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40776:48:0;;;;;;;;;;;;;::::1;;40848:12;40835:10;:25:::0;40893:15:::1;40871:19;:37:::0;40730:186::o;28121:83::-;28191:5;28184:12;;;;;;;-1:-1:-1;;28184:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28158:13;;28184:12;;28191:5;;28184:12;;28191:5;28184:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28121:83;;:::o;29062:161::-;29137:4;29154:39;29163:12;:10;:12::i;:::-;29177:7;29186:6;29154:8;:39::i;:::-;-1:-1:-1;29211:4:0;29062:161;;;;;:::o;39273:164::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;39373:3:::1;39361:6;39368:1;39361:9;;;;;;;;;;;;;;;:15;;;;39399:4;39387:6;39394:1;39387:9;;;;;;;;;;;;;;;:16;;;;39426:3;39414:6;39421:1;39414:9;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:15:::0;-1:-1:-1;;;39273:164:0:o;25325:24::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25325:24:0;:::o;30317:224::-;30388:7;30431:11;;30416;:26;;30408:70;;;;;-1:-1:-1;;;30408:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30496:37;30512:20;:18;:20::i;:::-;30496:11;;:15;:37::i;:::-;30489:44;;30317:224;;;;:::o;39759:97::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;39829:10:::1;:19:::0;;-1:-1:-1;;;;;;39829:19:0::1;-1:-1:-1::0;;;;;39829:19:0;;;::::1;::::0;;;::::1;::::0;;39759:97::o;40379:131::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40468:18:0;;;::::1;;::::0;;;:9:::1;:18;::::0;;;;:34;;-1:-1:-1;;40468:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40379:131::o;28398:99::-;28478:11;;28398:99;:::o;25223:30::-;;;;:::o;29231:407::-;29371:4;29388:36;29398:6;29406:9;29417:6;29388:9;:36::i;:::-;29437:171;29460:6;29481:12;:10;:12::i;:::-;29508:89;29546:6;29508:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29508:19:0;;;;;;:11;:19;;;;;;29528:12;:10;:12::i;:::-;-1:-1:-1;;;;;29508:33:0;;;;;;;;;;;;-1:-1:-1;29508:33:0;;;:89;:37;:89::i;:::-;29437:8;:171::i;:::-;-1:-1:-1;29626:4:0;29231:407;;;;;:::o;39965:142::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;40061:38:::1;40093:5;40061:27;40077:10;40061:11;;:15;;:27;;;;:::i;:::-;:31:::0;::::1;:38::i;:::-;40043:15;:56:::0;-1:-1:-1;39965:142:0:o;30549:299::-;30625:7;30673:16;;30653;:36;;30645:91;;;;-1:-1:-1;;;30645:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30747:19;30769:20;:18;:20::i;:::-;30747:42;-1:-1:-1;30807:33:0;:16;30747:42;30807:20;:33::i;:::-;30800:40;30549:299;-1:-1:-1;;;30549:299:0:o;28307:83::-;28373:9;;;;28307:83;:::o;38917:168::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;39019:3:::1;39006:7;39014:1;39006:10;;;;;;;;;;;;;;;:16;;;;39046:4;39033:7;39041:1;39033:10;;;;;;;;;;;;;;;:17;;;;39074:3;39061:7;39069:1;39061:10;;;;;;;29646:218:::0;29734:4;29751:83;29760:12;:10;:12::i;:::-;29774:7;29783:50;29822:10;29783:11;:25;29795:12;:10;:12::i;:::-;-1:-1:-1;;;;;29783:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29783:25:0;;;:34;;;;;;;;;;;:38;:50::i;39864:93::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;39932:8:::1;:17:::0;;-1:-1:-1;;;;;;39932:17:0::1;-1:-1:-1::0;;;;;39932:17:0;;;::::1;::::0;;;::::1;::::0;;39864:93::o;25393:25::-;;;;;;;;;;38432:113;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38511:18:0;;;::::1;;::::0;;;:9:::1;:18;::::0;;;;:26;;-1:-1:-1;;38511:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38432:113::o;40257:114::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;40335:19:::1;:28:::0;40257:114::o;25938:25::-;;;-1:-1:-1;;;;;25938:25:0;;:::o;39645:106::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;39719:15:::1;:24:::0;;-1:-1:-1;;;;;;39719:24:0::1;-1:-1:-1::0;;;;;39719:24:0;;;::::1;::::0;;;::::1;::::0;;39645:106::o;25682:30::-;;;;;;;;;:::o;28505:215::-;-1:-1:-1;;;;;28595:20:0;;28571:7;28595:20;;;:11;:20;;;;;;;;28591:55;;;-1:-1:-1;;;;;;28624:22:0;;;;;;:13;:22;;;;;;28617:29;;28591:55;-1:-1:-1;;;;;28684:27:0;;;;;;:18;:27;;;;;;28664:48;;:19;:48::i;19227:148::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;19334:1:::1;19318:6:::0;;19297:40:::1;::::0;-1:-1:-1;;;;;19318:6:0;;::::1;::::0;19297:40:::1;::::0;19334:1;;19297:40:::1;19365:1;19348:19:::0;;-1:-1:-1;;;;;;19348:19:0::1;::::0;;19227:148::o;25901:30::-;;;-1:-1:-1;;;;;25901:30:0;;:::o;38553:121::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;38636:22:0;;;::::1;;::::0;;;:13:::1;:22;::::0;;;;:30;;-1:-1:-1;;38636:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38553:121::o;25800:40::-;;;;:::o;18585:79::-;18623:7;18650:6;-1:-1:-1;;;;;18650:6:0;18585:79;:::o;25356:30::-;;;;;;;;;;25970:23;;;-1:-1:-1;;;;;25970:23:0;;:::o;39093:172::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;39197:3:::1;39183:8;39192:1;39183:11;;;;;;;;;;;;;;;:17;;;;39225:4;39211:8;39220:1;39211:11;;;;;;;;;;;;;;;:18;;;;39254:3;39240:8;39249:1;39240:11;;;;;;;28212:87:::0;28284:7;28277:14;;;;;;;;-1:-1:-1;;28277:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28251:13;;28277:14;;28284:7;;28277:14;;28284:7;28277:14;;;;;;;;;;;;;;;;;;;;;;;;25425:23;;;;;;;;;;38278:146;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;38377:4:::1;:12:::0;;-1:-1:-1;;;;;38377:12:0;;::::1;-1:-1:-1::0;;;;;;38377:12:0;;::::1;;::::0;;;38400:6:::1;:16:::0;;;;;::::1;::::0;::::1;;::::0;;38278:146::o;29872:319::-;29965:4;29982:179;30005:12;:10;:12::i;:::-;30032:7;30054:96;30093:15;30054:96;;;;;;;;;;;;;;;;;:11;:25;30066:12;:10;:12::i;:::-;-1:-1:-1;;;;;30054:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;30054:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;40518:204::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;40617:9:::1;40612:103;40635:9;:16;40631:1;:20;40612:103;;;40698:5;40672:9;:23;40682:9;40692:1;40682:12;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;40672:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;40672:23:0;:31;;-1:-1:-1;;40672:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;40653:3:0::1;40612:103;;;;40518:204:::0;;:::o;24984:41::-;;;;;;;;;;;;;;;:::o;26041:19::-;;;-1:-1:-1;;;;;26041:19:0;;:::o;28728:175::-;28814:4;28831:42;28841:12;:10;:12::i;:::-;28855:9;28866:6;28831:9;:42::i;39445:192::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;39559:3:::1;39540:13;39554:1;39540:16;;;;;;;;;;;;;;;:22;;;;39592:4;39573:13;39587:1;39573:16;;;;;;;;;;;;;;;:23;;;;39626:3;39607:13;39621:1;39607:16;;;;;;;25721:66:::0;;;;:::o;38818:91::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;38882:11:::1;:19:::0;;-1:-1:-1;;38882:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38818:91::o;26069:29::-;;;;:::o;25032:45::-;;;;;;;;;;;;;;;:::o;26105:34::-;;;;:::o;30199:110::-;-1:-1:-1;;;;;30281:20:0;30257:4;30281:20;;;:11;:20;;;;;;;;;30199:110::o;28911:143::-;-1:-1:-1;;;;;29019:18:0;;;28992:7;29019:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28911:143::o;38682:128::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;38750:11:::1;:21:::0;;;::::1;;::::0;;::::1;-1:-1:-1::0;;38750:21:0;;::::1;::::0;;;::::1;::::0;;;38782:20:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;38682:128:::0;:::o;25618:31::-;;;;;;:::o;25847:45::-;;;;:::o;40115:134::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;40203:38:::1;40235:5;40203:27;40219:10;40203:11;;:15;;:27;;;;:::i;:38::-;40189:11;:52:::0;-1:-1:-1;40115:134:0:o;30856:457::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;30952:6:::1;::::0;-1:-1:-1;;;;;30933:26:0;;::::1;30952:6:::0;::::1;30933:26;;30925:80;;;;-1:-1:-1::0;;;30925:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;31101:27:0;::::1;31131:1;31101:27:::0;;;:18:::1;:27;::::0;;;;;:31;31097:137:::1;;-1:-1:-1::0;;;;;31194:27:0;::::1;;::::0;;;:18:::1;:27;::::0;;;;;31174:48:::1;::::0;:19:::1;:48::i;:::-;-1:-1:-1::0;;;;;31149:22:0;::::1;;::::0;;;:13:::1;:22;::::0;;;;:73;31097:137:::1;-1:-1:-1::0;;;;;31244:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31244:27:0::1;31267:4;31244:27:::0;;::::1;::::0;;;31282:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31282:23:0::1;::::0;;::::1;::::0;;30856:457::o;19530:244::-;18807:12;:10;:12::i;:::-;18797:6;;-1:-1:-1;;;;;18797:6:0;;;:22;;;18789:67;;;;;-1:-1:-1;;;18789:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;18789:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;19619:22:0;::::1;19611:73;;;;-1:-1:-1::0;;;19611:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19721:6;::::0;;19700:38:::1;::::0;-1:-1:-1;;;;;19700:38:0;;::::1;::::0;19721:6;::::1;::::0;19700:38:::1;::::0;::::1;19749:6;:17:::0;;-1:-1:-1;;;;;;19749:17:0::1;-1:-1:-1::0;;;;;19749:17:0;;;::::1;::::0;;;::::1;::::0;;19530:244::o;26002:32::-;;;-1:-1:-1;;;;;26002:32:0;;:::o;25173:41::-;;;;;;;;;;;;;;;:::o;8069:471::-;8127:7;8372:6;8368:47;;-1:-1:-1;8402:1:0;8395:8;;8368:47;8439:5;;;8443:1;8439;:5;:1;8463:5;;;;;:10;8455:56;;;;-1:-1:-1;;;8455:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9016:132;9074:7;9101:39;9105:1;9108;9101:39;;;;;;;;;;;;;;;;;:3;:39::i;7145:136::-;7203:7;7230:43;7234:1;7237;7230:43;;;;;;;;;;;;;;;;;:3;:43::i;2740:106::-;2828:10;2740:106;:::o;31321:371::-;-1:-1:-1;;;;;31448:19:0;;31440:68;;;;-1:-1:-1;;;31440:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31527:21:0;;31519:68;;;;-1:-1:-1;;;31519:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31600:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31652:32;;;;;;;;;;;;;;;;;31321:371;;;:::o;37539:731::-;37638:16;;37687:11;;37591:7;;37638:16;37591:7;37709:394;37733:9;:16;37729:20;;37709:394;;;37810:16;37775:18;:32;37794:9;37804:1;37794:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37794:12:0;37775:32;;;;;;;;;;;;;:51;;:96;;;37860:11;37830:13;:27;37844:9;37854:1;37844:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37844:12:0;37830:27;;;;;;;;;;;;;:41;37775:96;37771:159;;;37918:11;;37897:16;;:33;;:20;:33::i;:::-;37890:40;;;;;;;37771:159;37964:54;37985:18;:32;38004:9;38014:1;38004:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38004:12:0;37985:32;;;;;;;;;;;;;37964:16;;:20;:54::i;:::-;37945:73;;38047:44;38063:13;:27;38077:9;38087:1;38077:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38077:12:0;38063:27;;;;;;;;;;;;;38047:11;;:15;:44::i;:::-;38033:58;-1:-1:-1;37751:3:0;;37709:394;;;-1:-1:-1;38157:11:0;;38136:16;;:33;;:20;:33::i;:::-;38117:16;:52;38113:98;;;38199:11;;38178:16;;:33;;:20;:33::i;:::-;38171:40;;;;;;38113:98;38229:33;:16;38250:11;38229:20;:33::i;:::-;38222:40;;;;37539:731;:::o;31700:1838::-;-1:-1:-1;;;;;31831:20:0;;31823:70;;;;-1:-1:-1;;;31823:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31912:23:0;;31904:71;;;;-1:-1:-1;;;31904:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32003:1;31994:6;:10;31986:64;;;;-1:-1:-1;;;31986:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32071:17:0;;;;;;:9;:17;;;;;;;;;:41;;-1:-1:-1;;;;;;32092:20:0;;;;;;:9;:20;;;;;;;;32071:41;:62;;;-1:-1:-1;32129:4:0;;-1:-1:-1;;;;;32116:17:0;;;32129:4;;32116:17;32071:62;:117;;;;32173:15;;32137:32;32162:6;32137:20;32147:9;32137;:20::i;:::-;:24;;:32::i;:::-;:51;;32071:117;32063:155;;;;;-1:-1:-1;;;32063:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32239:21:0;;;;;;:13;:21;;;;;;;;;:46;;;32274:11;;32264:6;:21;;32239:46;32231:82;;;;;-1:-1:-1;;;32231:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32335:17:0;;;;;;:9;:17;;;;;;;;32334:18;:43;;;;-1:-1:-1;;;;;;32357:20:0;;;;;;:9;:20;;;;;;;;32356:21;32334:43;32326:91;;;;-1:-1:-1;;;32326:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32434:11;;;;;;;:22;;;;-1:-1:-1;32450:6:0;;;;;;;32449:7;32434:22;:40;;;;-1:-1:-1;32470:4:0;;-1:-1:-1;;;;;32460:14:0;;;32470:4;;32460:14;;32434:40;32430:79;;;32491:6;:4;:6::i;:::-;32525:10;:8;:10::i;:::-;32524:11;:29;;;;-1:-1:-1;32549:4:0;;-1:-1:-1;;;;;32539:14:0;;;32549:4;;32539:14;32524:29;32521:88;;;-1:-1:-1;;;;;32570:20:0;;;;;;:9;:20;;;;;:27;;-1:-1:-1;;32570:27:0;32593:4;32570:27;;;32521:88;32646:6;32621:22;32678:20;:18;:20::i;:::-;32715:11;;32663:35;;-1:-1:-1;32715:11:0;;:33;;;;-1:-1:-1;;;;;;32731:17:0;;;;;;:9;:17;;;;;;;;32730:18;32715:33;:58;;;;-1:-1:-1;;;;;;32753:20:0;;;;;;:9;:20;;;;;;;;32752:21;32715:58;:69;;;;-1:-1:-1;32778:6:0;;;;;;;32777:7;32715:69;32711:207;;;32864:4;;32818:88;;32829:6;;32837;;32845:4;;-1:-1:-1;;;;;32864:4:0;;;32851:17;;;;;;32870:14;;;;;;:35;;-1:-1:-1;32901:4:0;;-1:-1:-1;;;;;32888:17:0;;;32901:4;;32888:17;;32870:35;32818:10;:88::i;:::-;32801:105;;32711:207;32990:48;33021:16;:6;33032:4;33021:10;:16::i;:::-;-1:-1:-1;;;;;32990:26:0;;;;;;:18;:26;;;;;;;:30;:48::i;:::-;-1:-1:-1;;;;;32961:26:0;;;;;;:18;:26;;;;;:77;33081:59;33115:24;:14;33134:4;33115:18;:24::i;:::-;-1:-1:-1;;;;;33081:29:0;;;;;;:18;:29;;;;;;;:33;:59::i;:::-;-1:-1:-1;;;;;33049:29:0;;;;;;;:18;:29;;;;;;;;:91;;;;33229:19;;;;;:11;:19;;;;;;;33225:109;;;-1:-1:-1;;;;;33289:21:0;;;;;;:13;:21;;;;;;:33;;33315:6;33289:25;:33::i;:::-;-1:-1:-1;;;;;33265:21:0;;;;;;:13;:21;;;;;:57;33225:109;-1:-1:-1;;;;;33348:22:0;;;;;;:11;:22;;;;;;;;33344:126;;;-1:-1:-1;;;;;33414:24:0;;;;;;:13;:24;;;;;;:44;;33443:14;33414:28;:44::i;:::-;-1:-1:-1;;;;;33387:24:0;;;;;;:13;:24;;;;;:71;33344:126;33504:9;-1:-1:-1;;;;;33487:43:0;33496:6;-1:-1:-1;;;;;33487:43:0;;33515:14;33487:43;;;;;;;;;;;;;;;;;;31700:1838;;;;;:::o;7584:226::-;7704:7;7740:12;7732:6;;;;7724:29;;;;-1:-1:-1;;;7724:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;7776:5:0;;;7584:226::o;6681:181::-;6739:7;6771:5;;;6795:6;;;;6787:46;;;;;-1:-1:-1;;;6787:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;9644:312;9764:7;9799:12;9792:5;9784:28;;;;-1:-1:-1;;;9784:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9823:9;9839:1;9835;:5;;;;;;;9644:312;-1:-1:-1;;;;;9644:312:0:o;35431:2100::-;26335:6;:13;;-1:-1:-1;;26335:13:0;;;;;35584:15:::1;::::0;35556:22:::1;::::0;35534:17:::1;::::0;26335:13;;35534:66:::1;::::0;35584:15;;35534:45:::1;::::0;:21:::1;:45::i;:66::-;35515:85;;35611:17;35631:22;35651:1;35631:15;;:19;;:22;;;;:::i;:::-;35611:42;;35664:20;35687:60;35729:17;;35687:37;35701:22;;35687:9;:13;;:37;;;;:::i;:60::-;35664:83;;35785:8;35763:19;;:30;35760:42;;;35795:7;;;;;35760:42;35877:16;::::0;;35891:1:::1;35877:16:::0;;;35849:25:::1;35877:16:::0;;::::1;::::0;;35849:25;35877:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;35877:16:0::1;35849:44;;35926:4;35904:8;35913:1;35904:11;;;;;;;;-1:-1:-1::0;;;;;35904:27:0;;::::1;:11;::::0;;::::1;::::0;;;;;;:27;;;;35956:6:::1;::::0;:13:::1;::::0;;-1:-1:-1;;;35956:13:0;;;;:6;;;::::1;::::0;:11:::1;::::0;:13:::1;::::0;;::::1;::::0;35904:11;;35956:13;;;;;:6;:13;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;35956:13:0;35942:11;;:8;;35951:1:::1;::::0;35942:11;::::1;;;;;-1:-1:-1::0;;;;;35942:27:0;;::::1;:11;::::0;;::::1;::::0;;;;;:27;36079:6:::1;::::0;36013:21:::1;::::0;36047:54:::1;::::0;36064:4:::1;::::0;36079:6:::1;36088:12:::0;36047:8:::1;:54::i;:::-;36112:6;::::0;:192:::1;::::0;-1:-1:-1;;;36112:192:0;;::::1;::::0;::::1;::::0;;;:6:::1;:192:::0;;;;;;36258:4:::1;36112:192:::0;;;;;;36278:15:::1;36112:192:::0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36112:6:0;;::::1;::::0;:57:::1;::::0;36184:12;;36227:8;;36258:4;36278:15;36112:192;;;;;;;::::1;::::0;;::::1;::::0;::::1;::::0;;;:6;:192:::1;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;36317:17;36337:40;36363:13;36337:21;:25;;:40;;;;:::i;:::-;36317:60;;36428:23;36454:55;36496:12;36454:37;36468:22;;36454:9;:13;;:37;;;;:::i;:55::-;36428:81:::0;-1:-1:-1;36523:19:0;;36520:78:::1;;36564:15;::::0;36544:54:::1;::::0;-1:-1:-1;;;;;36564:15:0::1;36582::::0;36544:11:::1;:54::i;:::-;36636:18;36657:50;36694:12;36657:32;36671:17;;36657:9;:13;;:32;;;;:::i;:50::-;36636:71:::0;-1:-1:-1;36721:14:0;;36718:63:::1;;36757:10;::::0;36737:44:::1;::::0;-1:-1:-1;;;;;36757:10:0::1;36770::::0;36737:11:::1;:44::i;:::-;36904:15;::::0;36846:21:::1;::::0;36817:26:::1;::::0;36904:30:::1;::::0;36924:9;36904:19:::1;:30::i;:::-;36878:56:::0;-1:-1:-1;36950:19:0;;36947:421:::1;;37017:6;::::0;36985:57:::1;::::0;37002:4:::1;::::0;-1:-1:-1;;;;;37017:6:0::1;37026:15:::0;36985:8:::1;:57::i;:::-;37057:6;::::0;37231:8:::1;::::0;37057:231:::1;::::0;;-1:-1:-1;;;37057:231:0;;37133:4:::1;37057:231;::::0;::::1;::::0;;;;;;;:6:::1;:231:::0;;;;;;;;;;-1:-1:-1;;;;;37231:8:0;;::::1;37057:231:::0;;;;37258:15:::1;37057:231:::0;;;;;;:6;;;::::1;::::0;:22:::1;::::0;37087:18;;37057:231;;;;;::::1;::::0;;;;;;;;;37087:18;37057:6;:231;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;37057:231:0;37308:48;;;;;37057:231:::1;37308:48:::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;36947:421;37413:1;37388:22;:26:::0;;;37425:17:::1;:21:::0;;;37457:15:::1;:19:::0;37494:29:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;;::::1;26359:1;;;;;;;;;;;26371:6:::0;:14;;-1:-1:-1;;26371:14:0;;;35431:2100::o;40924:90::-;40991:10;;:15;;40924:90;:::o;34267:943::-;34424:7;34469:6;34424:7;;34525:44;34538:3;:22;;34548:4;:12;;34559:1;34548:12;;;34555:1;34548:12;34538:22;;;34544:1;34538:22;34525:44;;34562:6;34525:12;:44::i;:::-;34488:81;;;;34583:8;34595:1;34583:13;34580:424;;34640:28;:14;34659:8;34640:18;:28::i;:::-;34623:45;-1:-1:-1;34719:57:0;34757:18;:8;34770:4;34757:12;:18::i;:::-;34746:4;34719:33;;;;:18;:33;;;;;;;:37;:57::i;:::-;34710:4;34683:33;;;;:18;:33;;;;;;;;:93;;;;34795:11;:26;;;;;;34791:140;;;34895:4;34873:28;;;;:13;:28;;;;;;:42;;34906:8;34873:32;:42::i;:::-;34864:4;34842:28;;;;:13;:28;;;;;:73;34791:140;34950:42;;;;;;;;34976:4;;-1:-1:-1;;;;;34950:42:0;;;;;;;;;;;;34580:424;35017:11;;35014:99;;35063:38;35084:16;:6;35095:4;35084:10;:16::i;:::-;35063;;;:20;:38::i;:::-;35044:16;:57;35014:99;35135:35;35161:8;35135:21;35149:6;35135:9;;:13;;:21;;;;:::i;:35::-;35123:9;:47;-1:-1:-1;35188:14:0;;34267:943;-1:-1:-1;;;;;;;34267:943:0:o;35218:205::-;35325:27;;35293:9;;35304:17;;-1:-1:-1;;;;;35325:8:0;;;35341:6;;35293:9;35325:27;35293:9;35325:27;35341:6;35325:8;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35292:60;;;;35386:4;35378:37;;;;;-1:-1:-1;;;35378:37:0;;;;;;;;;;;;-1:-1:-1;;;35378:37:0;;;;;;;;;;;;;;;35218:205;;;;:::o;33546:713::-;33619:7;33628;33648:14;33665:56;33704:11;;33718:1;33704:15;33699:2;:21;33665:29;33676:7;33684:8;33676:17;;;;;;;;;;;;;;;;33665:6;:10;;:29;;;;:::i;:56::-;33648:73;;33732:20;33755:62;33800:11;;33814:1;33800:15;33795:2;:21;33755:35;33766:13;33780:8;33766:23;;;;;;;;;;;;;;;;33755:6;:10;;:35;;;;:::i;:62::-;33732:85;;33828:15;33846:57;33886:11;;33900:1;33886:15;33881:2;:21;33846:30;33857:8;33866;33857:18;;;;;;;;;;;;;;;;33846:6;:10;;:30;;;;:::i;:57::-;33828:75;;33914:13;33930:55;33968:11;;33982:1;33968:15;33963:2;:21;33930:28;33941:6;33948:8;33941:16;;;;;;;;;;;;;;;;33930:6;:10;;:28;;;;:::i;:55::-;34031:22;;33914:71;;-1:-1:-1;34031:40:0;;34058:12;34031:26;:40::i;:::-;34006:22;:65;34102:17;;:30;;34124:7;34102:21;:30::i;:::-;34082:17;:50;34161:15;;:26;;34181:5;34161:19;:26::i;:::-;34143:15;:44;34206:6;34214:36;34244:5;34214:25;:12;34231:7;34214:16;:25::i;:36::-;34198:53;;;;;;;;33546:713;;;;;:::o
Swarm Source
ipfs://259079bf4b3932dc71ce6a65b05c2f09d107eead9c5262d9141f10b88a0fc0fd
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.