More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 150 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17699228 | 603 days ago | IN | 0 ETH | 0.00063361 | ||||
Approve | 16633719 | 753 days ago | IN | 0 ETH | 0.00056951 | ||||
Transfer | 15250783 | 952 days ago | IN | 0 ETH | 0.0031837 | ||||
Approve | 13913180 | 1164 days ago | IN | 0 ETH | 0.00378748 | ||||
Approve | 12803444 | 1337 days ago | IN | 0 ETH | 0.00046552 | ||||
Transfer | 12732937 | 1348 days ago | IN | 0 ETH | 0.00362027 | ||||
Approve | 12710885 | 1351 days ago | IN | 0 ETH | 0.00088262 | ||||
Approve | 12660466 | 1359 days ago | IN | 0 ETH | 0.00043602 | ||||
Transfer | 12632632 | 1364 days ago | IN | 0 ETH | 0.000341 | ||||
Approve | 12516850 | 1382 days ago | IN | 0 ETH | 0.00114603 | ||||
Approve | 12516829 | 1382 days ago | IN | 0 ETH | 0.00214139 | ||||
Approve | 12367066 | 1405 days ago | IN | 0 ETH | 0.00199708 | ||||
Approve | 12358477 | 1406 days ago | IN | 0 ETH | 0.00111724 | ||||
Approve | 12339834 | 1409 days ago | IN | 0 ETH | 0.00195518 | ||||
Approve | 12337149 | 1409 days ago | IN | 0 ETH | 0.00260691 | ||||
Approve | 12337137 | 1409 days ago | IN | 0 ETH | 0.00279312 | ||||
Approve | 12335861 | 1410 days ago | IN | 0 ETH | 0.00277682 | ||||
Approve | 12335802 | 1410 days ago | IN | 0 ETH | 0.0036776 | ||||
Transfer | 12333801 | 1410 days ago | IN | 0 ETH | 0.01678061 | ||||
Transfer | 12333792 | 1410 days ago | IN | 0 ETH | 0.00110715 | ||||
Set Max Tx Perce... | 12333775 | 1410 days ago | IN | 0 ETH | 0.001553 | ||||
Approve | 12331544 | 1410 days ago | IN | 0 ETH | 0.00496709 | ||||
Approve | 12331172 | 1410 days ago | IN | 0 ETH | 0.00423623 | ||||
Approve | 12329942 | 1410 days ago | IN | 0 ETH | 0.00509036 | ||||
Approve | 12329398 | 1411 days ago | IN | 0 ETH | 0.00455744 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 17699248 | 603 days ago | 0.00002973 ETH | ||||
Add Liquidity ET... | 17699248 | 603 days ago | 0.00004558 ETH | ||||
Transfer | 17699248 | 603 days ago | 0.00004558 ETH | ||||
Add Liquidity ET... | 15250783 | 952 days ago | 0.0000158 ETH | ||||
Transfer | 15250783 | 952 days ago | 0.0000158 ETH | ||||
- | 13822825 | 1178 days ago | 0.00001737 ETH | ||||
- | 13822825 | 1178 days ago | 0.00001737 ETH | ||||
- | 12803455 | 1337 days ago | 0.00001808 ETH | ||||
- | 12803455 | 1337 days ago | 0.00001808 ETH | ||||
- | 12789092 | 1339 days ago | 0.00044724 ETH | ||||
- | 12789092 | 1339 days ago | 0.00046625 ETH | ||||
- | 12789092 | 1339 days ago | 0.00046625 ETH | ||||
- | 12732937 | 1348 days ago | 0.00001896 ETH | ||||
- | 12732937 | 1348 days ago | 0.00001896 ETH | ||||
- | 12719046 | 1350 days ago | 0.0000192 ETH | ||||
- | 12719046 | 1350 days ago | 0.0000192 ETH | ||||
- | 12692877 | 1354 days ago | 0.00001955 ETH | ||||
- | 12692877 | 1354 days ago | 0.00001955 ETH | ||||
- | 12635707 | 1363 days ago | 0.00001994 ETH | ||||
- | 12635707 | 1363 days ago | 0.00001994 ETH | ||||
- | 12602654 | 1368 days ago | 0.00002021 ETH | ||||
- | 12602654 | 1368 days ago | 0.00002021 ETH | ||||
- | 12575783 | 1372 days ago | 0.00002136 ETH | ||||
- | 12575783 | 1372 days ago | 0.00002136 ETH | ||||
- | 12516877 | 1382 days ago | 0.00002262 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
RawDoge
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-26 */ /** RawDoge Doge's bad ass big brother $RAW https://t.me/rawdogetoken */ pragma solidity ^0.6.12; // SPDX-License-Identifier: Unlicensed interface IERC20 { function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () 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; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = now + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(now > _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } // pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract RawDoge is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "RawDoge"; string private _symbol = "RAW"; uint8 private _decimals = 9; uint256 public _taxFee = 5; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 5; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 5000000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 5000 * 10**6 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; return tokenFromReflection(_rOwned[account]); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function excludeFromReward(address account) public onlyOwner() { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function withdrawEther() external onlyOwner { msg.sender.transfer(address(this).balance); } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns(uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns(uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer( address from, address to, uint256 amount ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _transferStandard(sender, recipient, amount); } if(!takeFee) restoreAllFee(); } function _transferStandard(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
69d3c21bcecceda100000060095569085afffa6ff50bffffff19600a55610100604052600760c081905266526177446f676560c81b60e09081526200004891600c9190620003b2565b506040805180820190915260038082526252415760e81b60209092019182526200007591600d91620003b2565b50600e805460ff191660091790556005600f819055601081905560118190556012556013805461ff00191661010017905569010f0cf064dd59200000601455674563918244f40000601555348015620000cd57600080fd5b506000620000da6200039f565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a5460036000620001356200039f565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001ac57600080fd5b505afa158015620001c1573d6000803e3d6000fd5b505050506040513d6020811015620001d857600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200022957600080fd5b505afa1580156200023e573d6000803e3d6000fd5b505050506040513d60208110156200025557600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002a857600080fd5b505af1158015620002bd573d6000803e3d6000fd5b505050506040513d6020811015620002d457600080fd5b50516001600160601b0319606091821b811660a0529082901b1660805260016006600062000301620003a3565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260069092529020805490911660011790556200034b6200039f565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3506200044e565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003f557805160ff191683800117855562000425565b8280016001018555821562000425579182015b828111156200042557825182559160200191906001019062000408565b506200043392915062000437565b5090565b5b8082111562000433576000815560010162000438565b60805160601c60a05160601c612adb6200049660003980610eda5280611a575250806109c1528061221352806122cb52806122f252806123d852806123ff5250612adb6000f3fe6080604052600436106102295760003560e01c80636bc87c3a11610123578063a457c2d7116100ab578063d543dbeb1161006f578063d543dbeb146107b3578063dd467064146107dd578063dd62ed3e14610807578063ea2f0b3714610842578063f2fde38b1461087557610230565b8063a457c2d7146106eb578063a69df4b514610724578063a9059cbb14610739578063b6c5232414610772578063c49b9a801461078757610230565b80637d1db4a5116100f25780637d1db4a51461064f57806388f82020146106645780638da5cb5b146106975780638ee88c53146106ac57806395d89b41146106d657610230565b80636bc87c3a146105dd57806370a08231146105f2578063715018a6146106255780637362377b1461063a57610230565b80633685d419116101b15780634549b039116101755780634549b0391461051b57806349bd5a5e1461054d5780634a74bb021461056257806352390c02146105775780635342acb4146105aa57610230565b80633685d4191461043d57806339509351146104705780633b124fe7146104a95780633bd5d173146104be578063437823ec146104e857610230565b80631694505e116101f85780631694505e1461035f57806318160ddd1461039057806323b872dd146103a55780632d838119146103e8578063313ce5671461041257610230565b8063061c82d01461023557806306fdde0314610261578063095ea7b3146102eb57806313114a9d1461033857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025f6004803603602081101561025857600080fd5b50356108a8565b005b34801561026d57600080fd5b50610276610905565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506103246004803603604081101561030e57600080fd5b506001600160a01b03813516906020013561099b565b604080519115158252519081900360200190f35b34801561034457600080fd5b5061034d6109b9565b60408051918252519081900360200190f35b34801561036b57600080fd5b506103746109bf565b604080516001600160a01b039092168252519081900360200190f35b34801561039c57600080fd5b5061034d6109e3565b3480156103b157600080fd5b50610324600480360360608110156103c857600080fd5b506001600160a01b038135811691602081013590911690604001356109e9565b3480156103f457600080fd5b5061034d6004803603602081101561040b57600080fd5b5035610a70565b34801561041e57600080fd5b50610427610ad2565b6040805160ff9092168252519081900360200190f35b34801561044957600080fd5b5061025f6004803603602081101561046057600080fd5b50356001600160a01b0316610adb565b34801561047c57600080fd5b506103246004803603604081101561049357600080fd5b506001600160a01b038135169060200135610c9c565b3480156104b557600080fd5b5061034d610cea565b3480156104ca57600080fd5b5061025f600480360360208110156104e157600080fd5b5035610cf0565b3480156104f457600080fd5b5061025f6004803603602081101561050b57600080fd5b50356001600160a01b0316610dca565b34801561052757600080fd5b5061034d6004803603604081101561053e57600080fd5b50803590602001351515610e46565b34801561055957600080fd5b50610374610ed8565b34801561056e57600080fd5b50610324610efc565b34801561058357600080fd5b5061025f6004803603602081101561059a57600080fd5b50356001600160a01b0316610f0a565b3480156105b657600080fd5b50610324600480360360208110156105cd57600080fd5b50356001600160a01b0316611090565b3480156105e957600080fd5b5061034d6110ae565b3480156105fe57600080fd5b5061034d6004803603602081101561061557600080fd5b50356001600160a01b03166110b4565b34801561063157600080fd5b5061025f611116565b34801561064657600080fd5b5061025f6111a6565b34801561065b57600080fd5b5061034d61122d565b34801561067057600080fd5b506103246004803603602081101561068757600080fd5b50356001600160a01b0316611233565b3480156106a357600080fd5b50610374611251565b3480156106b857600080fd5b5061025f600480360360208110156106cf57600080fd5b5035611260565b3480156106e257600080fd5b506102766112bd565b3480156106f757600080fd5b506103246004803603604081101561070e57600080fd5b506001600160a01b03813516906020013561131e565b34801561073057600080fd5b5061025f611386565b34801561074557600080fd5b506103246004803603604081101561075c57600080fd5b506001600160a01b038135169060200135611474565b34801561077e57600080fd5b5061034d611488565b34801561079357600080fd5b5061025f600480360360208110156107aa57600080fd5b5035151561148e565b3480156107bf57600080fd5b5061025f600480360360208110156107d657600080fd5b5035611535565b3480156107e957600080fd5b5061025f6004803603602081101561080057600080fd5b50356115b3565b34801561081357600080fd5b5061034d6004803603604081101561082a57600080fd5b506001600160a01b0381358116916020013516611651565b34801561084e57600080fd5b5061025f6004803603602081101561086557600080fd5b50356001600160a01b031661167c565b34801561088157600080fd5b5061025f6004803603602081101561089857600080fd5b50356001600160a01b03166116f5565b6108b06117db565b6000546001600160a01b03908116911614610900576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b5050505050905090565b60006109af6109a86117db565b84846117df565b5060015b92915050565b600b5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095490565b60006109f68484846118cb565b610a6684610a026117db565b610a6185604051806060016040528060288152602001612958602891396001600160a01b038a16600090815260056020526040812090610a406117db565b6001600160a01b031681526020810191909152604001600020549190611b11565b6117df565b5060019392505050565b6000600a54821115610ab35760405162461bcd60e51b815260040180806020018281038252602a81526020018061289d602a913960400191505060405180910390fd5b6000610abd611ba8565b9050610ac98382611bcb565b9150505b919050565b600e5460ff1690565b610ae36117db565b6000546001600160a01b03908116911614610b33576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610ba0576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610c9857816001600160a01b031660088281548110610bc457fe5b6000918252602090912001546001600160a01b03161415610c9057600880546000198101908110610bf157fe5b600091825260209091200154600880546001600160a01b039092169183908110610c1757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c6957fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610c98565b600101610ba3565b5050565b60006109af610ca96117db565b84610a618560056000610cba6117db565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611c14565b600f5481565b6000610cfa6117db565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d555760405162461bcd60e51b815260040180806020018281038252602c815260200180612a32602c913960400191505060405180910390fd5b6000610d6083611c6e565b505050506001600160a01b038416600090815260036020526040902054919250610d8c91905082611cbd565b6001600160a01b038316600090815260036020526040902055600a54610db29082611cbd565b600a55600b54610dc29084611c14565b600b55505050565b610dd26117db565b6000546001600160a01b03908116911614610e22576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610e9f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610ebe576000610eaf84611c6e565b509395506109b3945050505050565b6000610ec984611c6e565b509295506109b3945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601354610100900460ff1681565b610f126117db565b6000546001600160a01b03908116911614610f62576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610fd0576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561102a576001600160a01b03811660009081526003602052604090205461101090610a70565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff16156110f457506001600160a01b038116600090815260046020526040902054610acd565b6001600160a01b0382166000908152600360205260409020546109b390610a70565b61111e6117db565b6000546001600160a01b0390811691161461116e576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206129a0833981519152908390a3600080546001600160a01b0319169055565b6111ae6117db565b6000546001600160a01b039081169116146111fe576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b60405133904780156108fc02916000818181858888f1935050505015801561122a573d6000803e3d6000fd5b50565b60145481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6112686117db565b6000546001600160a01b039081169116146112b8576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109915780601f1061096657610100808354040283529160200191610991565b60006109af61132b6117db565b84610a6185604051806060016040528060258152602001612a8160259139600560006113556117db565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b11565b6001546001600160a01b031633146113cf5760405162461bcd60e51b8152600401808060200182810382526023815260200180612a5e6023913960400191505060405180910390fd5b6002544211611425576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206129a083398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109af6114816117db565b84846118cb565b60025490565b6114966117db565b6000546001600160a01b039081169116146114e6576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b60138054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b61153d6117db565b6000546001600160a01b0390811691161461158d576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b6115ad60646115a783600954611cff90919063ffffffff16565b90611bcb565b60145550565b6115bb6117db565b6000546001600160a01b0390811691161461160b576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206129a0833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6116846117db565b6000546001600160a01b039081169116146116d4576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6116fd6117db565b6000546001600160a01b0390811691161461174d576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b6001600160a01b0381166117925760405162461bcd60e51b81526004018080602001828103825260268152602001806128c76026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206129a083398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166118245760405162461bcd60e51b8152600401808060200182810382526024815260200180612a0e6024913960400191505060405180910390fd5b6001600160a01b0382166118695760405162461bcd60e51b81526004018080602001828103825260228152602001806128ed6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119105760405162461bcd60e51b81526004018080602001828103825260258152602001806129e96025913960400191505060405180910390fd5b6001600160a01b0382166119555760405162461bcd60e51b815260040180806020018281038252602381526020018061287a6023913960400191505060405180910390fd5b600081116119945760405162461bcd60e51b81526004018080602001828103825260298152602001806129c06029913960400191505060405180910390fd5b61199c611251565b6001600160a01b0316836001600160a01b0316141580156119d657506119c0611251565b6001600160a01b0316826001600160a01b031614155b15611a1c57601454811115611a1c5760405162461bcd60e51b815260040180806020018281038252602881526020018061290f6028913960400191505060405180910390fd5b6000611a27306110b4565b90506014548110611a3757506014545b60155481108015908190611a4e575060135460ff16155b8015611a8c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611a9f5750601354610100900460ff165b15611ab2576015549150611ab282611d58565b6001600160a01b03851660009081526006602052604090205460019060ff1680611af457506001600160a01b03851660009081526006602052604090205460ff165b15611afd575060005b611b0986868684611df5565b505050505050565b60008184841115611ba05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b65578181015183820152602001611b4d565b50505050905090810190601f168015611b925780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611bb5611f69565b9092509050611bc48282611bcb565b9250505090565b6000611c0d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120cc565b9392505050565b600082820183811015611c0d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611c858a612131565b9250925092506000806000611ca38d8686611c9e611ba8565b612173565b919f909e50909c50959a5093985091965092945050505050565b6000611c0d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b11565b600082611d0e575060006109b3565b82820282848281611d1b57fe5b0414611c0d5760405162461bcd60e51b81526004018080602001828103825260218152602001806129376021913960400191505060405180910390fd5b6013805460ff191660011790556000611d72826002611bcb565b90506000611d808383611cbd565b905047611d8c836121c3565b6000611d984783611cbd565b9050611da483826123d2565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506013805460ff19169055505050565b80611e0257611e026124d0565b6001600160a01b03841660009081526007602052604090205460ff168015611e4357506001600160a01b03831660009081526007602052604090205460ff16155b15611e5857611e53848484612502565b611f56565b6001600160a01b03841660009081526007602052604090205460ff16158015611e9957506001600160a01b03831660009081526007602052604090205460ff165b15611ea957611e53848484612626565b6001600160a01b03841660009081526007602052604090205460ff16158015611eeb57506001600160a01b03831660009081526007602052604090205460ff16155b15611efb57611e538484846126cf565b6001600160a01b03841660009081526007602052604090205460ff168015611f3b57506001600160a01b03831660009081526007602052604090205460ff165b15611f4b57611e53848484612713565b611f568484846126cf565b80611f6357611f63612786565b50505050565b600a546009546000918291825b60085481101561209a57826003600060088481548110611f9257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611ff75750816004600060088481548110611fd057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561200e57600a54600954945094505050506120c8565b61204e600360006008848154811061202257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611cbd565b9250612090600460006008848154811061206457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611cbd565b9150600101611f76565b50600954600a546120aa91611bcb565b8210156120c257600a546009549350935050506120c8565b90925090505b9091565b6000818361211b5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b65578181015183820152602001611b4d565b50600083858161212757fe5b0495945050505050565b60008060008061214085612794565b9050600061214d866127b0565b905060006121658261215f8986611cbd565b90611cbd565b979296509094509092505050565b60008080806121828886611cff565b905060006121908887611cff565b9050600061219e8888611cff565b905060006121b08261215f8686611cbd565b939b939a50919850919650505050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106121f157fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561226a57600080fd5b505afa15801561227e573d6000803e3d6000fd5b505050506040513d602081101561229457600080fd5b50518151829060019081106122a557fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506122f0307f0000000000000000000000000000000000000000000000000000000000000000846117df565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561239557818101518382015260200161237d565b505050509050019650505050505050600060405180830381600087803b1580156123be57600080fd5b505af1158015611b09573d6000803e3d6000fd5b6123fd307f0000000000000000000000000000000000000000000000000000000000000000846117df565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d71982308560008061243a611251565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156124a557600080fd5b505af11580156124b9573d6000803e3d6000fd5b50505050506040513d6060811015611f6357600080fd5b600f541580156124e05750601154155b156124ea57612500565b600f805460105560118054601255600091829055555b565b60008060008060008061251487611c6e565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125469088611cbd565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546125759087611cbd565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546125a49086611c14565b6001600160a01b0389166000908152600360205260409020556125c6816127cc565b6125d08483612855565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061263887611c6e565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061266a9087611cbd565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546126a09084611c14565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546125a49086611c14565b6000806000806000806126e187611c6e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506125759087611cbd565b60008060008060008061272587611c6e565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127579088611cbd565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461266a9087611cbd565b601054600f55601254601155565b60006109b360646115a7600f5485611cff90919063ffffffff16565b60006109b360646115a760115485611cff90919063ffffffff16565b60006127d6611ba8565b905060006127e48383611cff565b306000908152600360205260409020549091506128019082611c14565b3060009081526003602090815260408083209390935560079052205460ff1615612850573060009081526004602052604090205461283f9084611c14565b306000908152600460205260409020555b505050565b600a546128629083611cbd565b600a55600b546128729082611c14565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122048693f335c175f059e46da9203c5603a63a7c2df0b7c67fbd7f9792f4c67c3b264736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102295760003560e01c80636bc87c3a11610123578063a457c2d7116100ab578063d543dbeb1161006f578063d543dbeb146107b3578063dd467064146107dd578063dd62ed3e14610807578063ea2f0b3714610842578063f2fde38b1461087557610230565b8063a457c2d7146106eb578063a69df4b514610724578063a9059cbb14610739578063b6c5232414610772578063c49b9a801461078757610230565b80637d1db4a5116100f25780637d1db4a51461064f57806388f82020146106645780638da5cb5b146106975780638ee88c53146106ac57806395d89b41146106d657610230565b80636bc87c3a146105dd57806370a08231146105f2578063715018a6146106255780637362377b1461063a57610230565b80633685d419116101b15780634549b039116101755780634549b0391461051b57806349bd5a5e1461054d5780634a74bb021461056257806352390c02146105775780635342acb4146105aa57610230565b80633685d4191461043d57806339509351146104705780633b124fe7146104a95780633bd5d173146104be578063437823ec146104e857610230565b80631694505e116101f85780631694505e1461035f57806318160ddd1461039057806323b872dd146103a55780632d838119146103e8578063313ce5671461041257610230565b8063061c82d01461023557806306fdde0314610261578063095ea7b3146102eb57806313114a9d1461033857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025f6004803603602081101561025857600080fd5b50356108a8565b005b34801561026d57600080fd5b50610276610905565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506103246004803603604081101561030e57600080fd5b506001600160a01b03813516906020013561099b565b604080519115158252519081900360200190f35b34801561034457600080fd5b5061034d6109b9565b60408051918252519081900360200190f35b34801561036b57600080fd5b506103746109bf565b604080516001600160a01b039092168252519081900360200190f35b34801561039c57600080fd5b5061034d6109e3565b3480156103b157600080fd5b50610324600480360360608110156103c857600080fd5b506001600160a01b038135811691602081013590911690604001356109e9565b3480156103f457600080fd5b5061034d6004803603602081101561040b57600080fd5b5035610a70565b34801561041e57600080fd5b50610427610ad2565b6040805160ff9092168252519081900360200190f35b34801561044957600080fd5b5061025f6004803603602081101561046057600080fd5b50356001600160a01b0316610adb565b34801561047c57600080fd5b506103246004803603604081101561049357600080fd5b506001600160a01b038135169060200135610c9c565b3480156104b557600080fd5b5061034d610cea565b3480156104ca57600080fd5b5061025f600480360360208110156104e157600080fd5b5035610cf0565b3480156104f457600080fd5b5061025f6004803603602081101561050b57600080fd5b50356001600160a01b0316610dca565b34801561052757600080fd5b5061034d6004803603604081101561053e57600080fd5b50803590602001351515610e46565b34801561055957600080fd5b50610374610ed8565b34801561056e57600080fd5b50610324610efc565b34801561058357600080fd5b5061025f6004803603602081101561059a57600080fd5b50356001600160a01b0316610f0a565b3480156105b657600080fd5b50610324600480360360208110156105cd57600080fd5b50356001600160a01b0316611090565b3480156105e957600080fd5b5061034d6110ae565b3480156105fe57600080fd5b5061034d6004803603602081101561061557600080fd5b50356001600160a01b03166110b4565b34801561063157600080fd5b5061025f611116565b34801561064657600080fd5b5061025f6111a6565b34801561065b57600080fd5b5061034d61122d565b34801561067057600080fd5b506103246004803603602081101561068757600080fd5b50356001600160a01b0316611233565b3480156106a357600080fd5b50610374611251565b3480156106b857600080fd5b5061025f600480360360208110156106cf57600080fd5b5035611260565b3480156106e257600080fd5b506102766112bd565b3480156106f757600080fd5b506103246004803603604081101561070e57600080fd5b506001600160a01b03813516906020013561131e565b34801561073057600080fd5b5061025f611386565b34801561074557600080fd5b506103246004803603604081101561075c57600080fd5b506001600160a01b038135169060200135611474565b34801561077e57600080fd5b5061034d611488565b34801561079357600080fd5b5061025f600480360360208110156107aa57600080fd5b5035151561148e565b3480156107bf57600080fd5b5061025f600480360360208110156107d657600080fd5b5035611535565b3480156107e957600080fd5b5061025f6004803603602081101561080057600080fd5b50356115b3565b34801561081357600080fd5b5061034d6004803603604081101561082a57600080fd5b506001600160a01b0381358116916020013516611651565b34801561084e57600080fd5b5061025f6004803603602081101561086557600080fd5b50356001600160a01b031661167c565b34801561088157600080fd5b5061025f6004803603602081101561089857600080fd5b50356001600160a01b03166116f5565b6108b06117db565b6000546001600160a01b03908116911614610900576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109915780601f1061096657610100808354040283529160200191610991565b820191906000526020600020905b81548152906001019060200180831161097457829003601f168201915b5050505050905090565b60006109af6109a86117db565b84846117df565b5060015b92915050565b600b5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60095490565b60006109f68484846118cb565b610a6684610a026117db565b610a6185604051806060016040528060288152602001612958602891396001600160a01b038a16600090815260056020526040812090610a406117db565b6001600160a01b031681526020810191909152604001600020549190611b11565b6117df565b5060019392505050565b6000600a54821115610ab35760405162461bcd60e51b815260040180806020018281038252602a81526020018061289d602a913960400191505060405180910390fd5b6000610abd611ba8565b9050610ac98382611bcb565b9150505b919050565b600e5460ff1690565b610ae36117db565b6000546001600160a01b03908116911614610b33576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610ba0576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610c9857816001600160a01b031660088281548110610bc457fe5b6000918252602090912001546001600160a01b03161415610c9057600880546000198101908110610bf157fe5b600091825260209091200154600880546001600160a01b039092169183908110610c1757fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610c6957fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610c98565b600101610ba3565b5050565b60006109af610ca96117db565b84610a618560056000610cba6117db565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611c14565b600f5481565b6000610cfa6117db565b6001600160a01b03811660009081526007602052604090205490915060ff1615610d555760405162461bcd60e51b815260040180806020018281038252602c815260200180612a32602c913960400191505060405180910390fd5b6000610d6083611c6e565b505050506001600160a01b038416600090815260036020526040902054919250610d8c91905082611cbd565b6001600160a01b038316600090815260036020526040902055600a54610db29082611cbd565b600a55600b54610dc29084611c14565b600b55505050565b610dd26117db565b6000546001600160a01b03908116911614610e22576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610e9f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610ebe576000610eaf84611c6e565b509395506109b3945050505050565b6000610ec984611c6e565b509295506109b3945050505050565b7f000000000000000000000000c672635dbcaaa1305fcac5bcf61fa1a8e2d361cb81565b601354610100900460ff1681565b610f126117db565b6000546001600160a01b03908116911614610f62576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff1615610fd0576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b0381166000908152600360205260409020541561102a576001600160a01b03811660009081526003602052604090205461101090610a70565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b60115481565b6001600160a01b03811660009081526007602052604081205460ff16156110f457506001600160a01b038116600090815260046020526040902054610acd565b6001600160a01b0382166000908152600360205260409020546109b390610a70565b61111e6117db565b6000546001600160a01b0390811691161461116e576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116906000805160206129a0833981519152908390a3600080546001600160a01b0319169055565b6111ae6117db565b6000546001600160a01b039081169116146111fe576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b60405133904780156108fc02916000818181858888f1935050505015801561122a573d6000803e3d6000fd5b50565b60145481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b6112686117db565b6000546001600160a01b039081169116146112b8576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109915780601f1061096657610100808354040283529160200191610991565b60006109af61132b6117db565b84610a6185604051806060016040528060258152602001612a8160259139600560006113556117db565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b11565b6001546001600160a01b031633146113cf5760405162461bcd60e51b8152600401808060200182810382526023815260200180612a5e6023913960400191505060405180910390fd5b6002544211611425576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b0393841693909116916000805160206129a083398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b60006109af6114816117db565b84846118cb565b60025490565b6114966117db565b6000546001600160a01b039081169116146114e6576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b60138054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b61153d6117db565b6000546001600160a01b0390811691161461158d576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b6115ad60646115a783600954611cff90919063ffffffff16565b90611bcb565b60145550565b6115bb6117db565b6000546001600160a01b0390811691161461160b576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b0384161790915516815542820160025560405181906000805160206129a0833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6116846117db565b6000546001600160a01b039081169116146116d4576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b6116fd6117db565b6000546001600160a01b0390811691161461174d576040805162461bcd60e51b81526020600482018190526024820152600080516020612980833981519152604482015290519081900360640190fd5b6001600160a01b0381166117925760405162461bcd60e51b81526004018080602001828103825260268152602001806128c76026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216916000805160206129a083398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b0383166118245760405162461bcd60e51b8152600401808060200182810382526024815260200180612a0e6024913960400191505060405180910390fd5b6001600160a01b0382166118695760405162461bcd60e51b81526004018080602001828103825260228152602001806128ed6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119105760405162461bcd60e51b81526004018080602001828103825260258152602001806129e96025913960400191505060405180910390fd5b6001600160a01b0382166119555760405162461bcd60e51b815260040180806020018281038252602381526020018061287a6023913960400191505060405180910390fd5b600081116119945760405162461bcd60e51b81526004018080602001828103825260298152602001806129c06029913960400191505060405180910390fd5b61199c611251565b6001600160a01b0316836001600160a01b0316141580156119d657506119c0611251565b6001600160a01b0316826001600160a01b031614155b15611a1c57601454811115611a1c5760405162461bcd60e51b815260040180806020018281038252602881526020018061290f6028913960400191505060405180910390fd5b6000611a27306110b4565b90506014548110611a3757506014545b60155481108015908190611a4e575060135460ff16155b8015611a8c57507f000000000000000000000000c672635dbcaaa1305fcac5bcf61fa1a8e2d361cb6001600160a01b0316856001600160a01b031614155b8015611a9f5750601354610100900460ff165b15611ab2576015549150611ab282611d58565b6001600160a01b03851660009081526006602052604090205460019060ff1680611af457506001600160a01b03851660009081526006602052604090205460ff165b15611afd575060005b611b0986868684611df5565b505050505050565b60008184841115611ba05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b65578181015183820152602001611b4d565b50505050905090810190601f168015611b925780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611bb5611f69565b9092509050611bc48282611bcb565b9250505090565b6000611c0d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120cc565b9392505050565b600082820183811015611c0d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611c858a612131565b9250925092506000806000611ca38d8686611c9e611ba8565b612173565b919f909e50909c50959a5093985091965092945050505050565b6000611c0d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b11565b600082611d0e575060006109b3565b82820282848281611d1b57fe5b0414611c0d5760405162461bcd60e51b81526004018080602001828103825260218152602001806129376021913960400191505060405180910390fd5b6013805460ff191660011790556000611d72826002611bcb565b90506000611d808383611cbd565b905047611d8c836121c3565b6000611d984783611cbd565b9050611da483826123d2565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506013805460ff19169055505050565b80611e0257611e026124d0565b6001600160a01b03841660009081526007602052604090205460ff168015611e4357506001600160a01b03831660009081526007602052604090205460ff16155b15611e5857611e53848484612502565b611f56565b6001600160a01b03841660009081526007602052604090205460ff16158015611e9957506001600160a01b03831660009081526007602052604090205460ff165b15611ea957611e53848484612626565b6001600160a01b03841660009081526007602052604090205460ff16158015611eeb57506001600160a01b03831660009081526007602052604090205460ff16155b15611efb57611e538484846126cf565b6001600160a01b03841660009081526007602052604090205460ff168015611f3b57506001600160a01b03831660009081526007602052604090205460ff165b15611f4b57611e53848484612713565b611f568484846126cf565b80611f6357611f63612786565b50505050565b600a546009546000918291825b60085481101561209a57826003600060088481548110611f9257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611ff75750816004600060088481548110611fd057fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561200e57600a54600954945094505050506120c8565b61204e600360006008848154811061202257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611cbd565b9250612090600460006008848154811061206457fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611cbd565b9150600101611f76565b50600954600a546120aa91611bcb565b8210156120c257600a546009549350935050506120c8565b90925090505b9091565b6000818361211b5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b65578181015183820152602001611b4d565b50600083858161212757fe5b0495945050505050565b60008060008061214085612794565b9050600061214d866127b0565b905060006121658261215f8986611cbd565b90611cbd565b979296509094509092505050565b60008080806121828886611cff565b905060006121908887611cff565b9050600061219e8888611cff565b905060006121b08261215f8686611cbd565b939b939a50919850919650505050505050565b604080516002808252606080830184529260208301908036833701905050905030816000815181106121f157fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561226a57600080fd5b505afa15801561227e573d6000803e3d6000fd5b505050506040513d602081101561229457600080fd5b50518151829060019081106122a557fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506122f0307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117df565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561239557818101518382015260200161237d565b505050509050019650505050505050600060405180830381600087803b1580156123be57600080fd5b505af1158015611b09573d6000803e3d6000fd5b6123fd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846117df565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d71982308560008061243a611251565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b1580156124a557600080fd5b505af11580156124b9573d6000803e3d6000fd5b50505050506040513d6060811015611f6357600080fd5b600f541580156124e05750601154155b156124ea57612500565b600f805460105560118054601255600091829055555b565b60008060008060008061251487611c6e565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125469088611cbd565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546125759087611cbd565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546125a49086611c14565b6001600160a01b0389166000908152600360205260409020556125c6816127cc565b6125d08483612855565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061263887611c6e565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061266a9087611cbd565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546126a09084611c14565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546125a49086611c14565b6000806000806000806126e187611c6e565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506125759087611cbd565b60008060008060008061272587611c6e565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506127579088611cbd565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461266a9087611cbd565b601054600f55601254601155565b60006109b360646115a7600f5485611cff90919063ffffffff16565b60006109b360646115a760115485611cff90919063ffffffff16565b60006127d6611ba8565b905060006127e48383611cff565b306000908152600360205260409020549091506128019082611c14565b3060009081526003602090815260408083209390935560079052205460ff1615612850573060009081526004602052604090205461283f9084611c14565b306000908152600460205260409020555b505050565b600a546128629083611cbd565b600a55600b546128729082611c14565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122048693f335c175f059e46da9203c5603a63a7c2df0b7c67fbd7f9792f4c67c3b264736f6c634300060c0033
Deployed Bytecode Sourcemap
25694:18249:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33070:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33070:98:0;;:::i;:::-;;28025:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28937:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28937:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30058:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26637:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26637:51:0;;;;;;;;;;;;;;28302:95;;;;;;;;;;;;;:::i;29106:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29106:313:0;;;;;;;;;;;;;;;;;:::i;30982:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30982:253:0;;:::i;28211:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31698:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31698:479:0;-1:-1:-1;;;;;31698:479:0;;:::i;29427:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29427:218:0;;;;;;;;:::i;26453:26::-;;;;;;;;;;;;;:::i;30153:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30153:377:0;;:::i;32833:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32833:111:0;-1:-1:-1;;;;;32833:111:0;;:::i;30538:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30538:436:0;;;;;;;;;:::i;26695:38::-;;;;;;;;;;;;;:::i;26770:40::-;;;;;;;;;;;;;:::i;31243:447::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31243:447:0;-1:-1:-1;;;;;31243:447:0;;:::i;37017:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37017:123:0;-1:-1:-1;;;;;37017:123:0;;:::i;26536:32::-;;;;;;;;;;;;;:::i;28405:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28405:198:0;-1:-1:-1;;;;;28405:198:0;;:::i;16293:148::-;;;;;;;;;;;;;:::i;33304:99::-;;;;;;;;;;;;;:::i;26819:53::-;;;;;;;;;;;;;:::i;29930:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29930:120:0;-1:-1:-1;;;;;29930:120:0;;:::i;15650:79::-;;;;;;;;;;;;;:::i;33176:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33176:122:0;;:::i;28116:87::-;;;;;;;;;;;;;:::i;29653:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29653:269:0;;;;;;;;:::i;17299:293::-;;;;;;;;;;;;;:::i;28611:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28611:167:0;;;;;;;;:::i;16848:89::-;;;;;;;;;;;;;:::i;33579:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33579:171:0;;;;:::i;33409:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33409:162:0;;:::i;17013:214::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17013:214:0;;:::i;28786:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28786:143:0;;;;;;;;;;:::i;32952:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32952:110:0;-1:-1:-1;;;;;32952:110:0;;:::i;16596:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16596:244:0;-1:-1:-1;;;;;16596:244:0;;:::i;33070:98::-;15872:12;:10;:12::i;:::-;15862:6;;-1:-1:-1;;;;;15862:6:0;;;:22;;;15854:67;;;;;-1:-1:-1;;;15854:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15854:67:0;;;;;;;;;;;;;;;33144:7:::1;:16:::0;33070:98::o;28025:83::-;28095:5;28088:12;;;;;;;;-1:-1:-1;;28088:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28062:13;;28088:12;;28095:5;;28088:12;;28095:5;28088:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28025:83;:::o;28937:161::-;29012:4;29029:39;29038:12;:10;:12::i;:::-;29052:7;29061:6;29029:8;:39::i;:::-;-1:-1:-1;29086:4:0;28937:161;;;;;:::o;30058:87::-;30127:10;;30058:87;:::o;26637:51::-;;;:::o;28302:95::-;28382:7;;28302:95;:::o;29106:313::-;29204:4;29221:36;29231:6;29239:9;29250:6;29221:9;:36::i;:::-;29268:121;29277:6;29285:12;:10;:12::i;:::-;29299:89;29337:6;29299:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29299:19:0;;;;;;:11;:19;;;;;;29319:12;:10;:12::i;:::-;-1:-1:-1;;;;;29299:33:0;;;;;;;;;;;;-1:-1:-1;29299:33:0;;;:89;:37;:89::i;:::-;29268:8;:121::i;:::-;-1:-1:-1;29407:4:0;29106:313;;;;;:::o;30982:253::-;31048:7;31087;;31076;:18;;31068:73;;;;-1:-1:-1;;;31068:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31152:19;31175:10;:8;:10::i;:::-;31152:33;-1:-1:-1;31203:24:0;:7;31152:33;31203:11;:24::i;:::-;31196:31;;;30982:253;;;;:::o;28211:83::-;28277:9;;;;28211:83;:::o;31698:479::-;15872:12;:10;:12::i;:::-;15862:6;;-1:-1:-1;;;;;15862:6:0;;;:22;;;15854:67;;;;;-1:-1:-1;;;15854:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15854:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31780:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31772:60;;;::::0;;-1:-1:-1;;;31772:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31848:9;31843:327;31867:9;:16:::0;31863:20;::::1;31843:327;;;31925:7;-1:-1:-1::0;;;;;31909:23:0::1;:9;31919:1;31909:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;31909:12:0::1;:23;31905:254;;;31968:9;31978:16:::0;;-1:-1:-1;;31978:20:0;;;31968:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;31953:9:::1;:12:::0;;-1:-1:-1;;;;;31968:31:0;;::::1;::::0;31963:1;;31953:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;31953:46:0::1;-1:-1:-1::0;;;;;31953:46:0;;::::1;;::::0;;32018:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32057:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32057:28:0::1;::::0;;32104:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32104:15:0;;;;;-1:-1:-1;;;;;;32104:15:0::1;::::0;;;;;32138:5:::1;;31905:254;31885:3;;31843:327;;;;31698:479:::0;:::o;29427:218::-;29515:4;29532:83;29541:12;:10;:12::i;:::-;29555:7;29564:50;29603:10;29564:11;:25;29576:12;:10;:12::i;:::-;-1:-1:-1;;;;;29564:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29564:25:0;;;:34;;;;;;;;;;;:38;:50::i;26453:26::-;;;;:::o;30153:377::-;30205:14;30222:12;:10;:12::i;:::-;-1:-1:-1;;;;;30254:19:0;;;;;;:11;:19;;;;;;30205:29;;-1:-1:-1;30254:19:0;;30253:20;30245:77;;;;-1:-1:-1;;;30245:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30334:15;30358:19;30369:7;30358:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30406:15:0;;;;;;:7;:15;;;;;;30333:44;;-1:-1:-1;30406:28:0;;:15;-1:-1:-1;30333:44:0;30406:19;:28::i;:::-;-1:-1:-1;;;;;30388:15:0;;;;;;:7;:15;;;;;:46;30455:7;;:20;;30467:7;30455:11;:20::i;:::-;30445:7;:30;30499:10;;:23;;30514:7;30499:14;:23::i;:::-;30486:10;:36;-1:-1:-1;;;30153:377:0:o;32833:111::-;15872:12;:10;:12::i;:::-;15862:6;;-1:-1:-1;;;;;15862:6:0;;;:22;;;15854:67;;;;;-1:-1:-1;;;15854:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15854:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32902:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;32902:34:0::1;32932:4;32902:34;::::0;;32833:111::o;30538:436::-;30628:7;30667;;30656;:18;;30648:62;;;;;-1:-1:-1;;;30648:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30726:17;30721:246;;30761:15;30785:19;30796:7;30785:10;:19::i;:::-;-1:-1:-1;30760:44:0;;-1:-1:-1;30819:14:0;;-1:-1:-1;;;;;30819:14:0;30721:246;30868:23;30899:19;30910:7;30899:10;:19::i;:::-;-1:-1:-1;30866:52:0;;-1:-1:-1;30933:22:0;;-1:-1:-1;;;;;30933:22:0;26695:38;;;:::o;26770:40::-;;;;;;;;;:::o;31243:447::-;15872:12;:10;:12::i;:::-;15862:6;;-1:-1:-1;;;;;15862:6:0;;;:22;;;15854:67;;;;;-1:-1:-1;;;15854:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15854:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31440:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;31439:21;31431:61;;;::::0;;-1:-1:-1;;;31431:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;31506:16:0;::::1;31525:1;31506:16:::0;;;:7:::1;:16;::::0;;;;;:20;31503:108:::1;;-1:-1:-1::0;;;;;31582:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;31562:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;31543:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;31503:108:::1;-1:-1:-1::0;;;;;31621:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;31621:27:0::1;31644:4;31621:27:::0;;::::1;::::0;;;31659:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;31659:23:0::1;::::0;;::::1;::::0;;31243:447::o;37017:123::-;-1:-1:-1;;;;;37105:27:0;37081:4;37105:27;;;:18;:27;;;;;;;;;37017:123::o;26536:32::-;;;;:::o;28405:198::-;-1:-1:-1;;;;;28495:20:0;;28471:7;28495:20;;;:11;:20;;;;;;;;28491:49;;;-1:-1:-1;;;;;;28524:16:0;;;;;;:7;:16;;;;;;28517:23;;28491:49;-1:-1:-1;;;;;28578:16:0;;;;;;:7;:16;;;;;;28558:37;;:19;:37::i;16293:148::-;15872:12;:10;:12::i;:::-;15862:6;;-1:-1:-1;;;;;15862:6:0;;;:22;;;15854:67;;;;;-1:-1:-1;;;15854:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15854:67:0;;;;;;;;;;;;;;;16400:1:::1;16384:6:::0;;16363:40:::1;::::0;-1:-1:-1;;;;;16384:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16363:40:0;16400:1;;16363:40:::1;16431:1;16414:19:::0;;-1:-1:-1;;;;;;16414:19:0::1;::::0;;16293:148::o;33304:99::-;15872:12;:10;:12::i;:::-;15862:6;;-1:-1:-1;;;;;15862:6:0;;;:22;;;15854:67;;;;;-1:-1:-1;;;15854:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15854:67:0;;;;;;;;;;;;;;;33356:42:::1;::::0;:10:::1;::::0;33376:21:::1;33356:42:::0;::::1;;;::::0;::::1;::::0;;;33376:21;33356:10;:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;33304:99::o:0;26819:53::-;;;;:::o;29930:120::-;-1:-1:-1;;;;;30022:20:0;29998:4;30022:20;;;:11;:20;;;;;;;;;29930:120::o;15650:79::-;15688:7;15715:6;-1:-1:-1;;;;;15715:6:0;15650:79;:::o;33176:122::-;15872:12;:10;:12::i;:::-;15862:6;;-1:-1:-1;;;;;15862:6:0;;;:22;;;15854:67;;;;;-1:-1:-1;;;15854:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15854:67:0;;;;;;;;;;;;;;;33262:13:::1;:28:::0;33176:122::o;28116:87::-;28188:7;28181:14;;;;;;;;-1:-1:-1;;28181:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28155:13;;28181:14;;28188:7;;28181:14;;28188:7;28181:14;;;;;;;;;;;;;;;;;;;;;;;;29653:269;29746:4;29763:129;29772:12;:10;:12::i;:::-;29786:7;29795:96;29834:15;29795:96;;;;;;;;;;;;;;;;;:11;:25;29807:12;:10;:12::i;:::-;-1:-1:-1;;;;;29795:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29795:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17299:293::-;17351:14;;-1:-1:-1;;;;;17351:14:0;17369:10;17351:28;17343:76;;;;-1:-1:-1;;;17343:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17444:9;;17438:3;:15;17430:60;;;;;-1:-1:-1;;;17430:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17535:14;;;17527:6;;17506:44;;-1:-1:-1;;;;;17535:14:0;;;;17527:6;;;;-1:-1:-1;;;;;;;;;;;17506:44:0;;17570:14;;;17561:23;;-1:-1:-1;;;;;;17561:23:0;-1:-1:-1;;;;;17570:14:0;;;17561:23;;;;;;17299:293::o;28611:167::-;28689:4;28706:42;28716:12;:10;:12::i;:::-;28730:9;28741:6;28706:9;:42::i;16848:89::-;16920:9;;16848:89;:::o;33579:171::-;15872:12;:10;:12::i;:::-;15862:6;;-1:-1:-1;;;;;15862:6:0;;;:22;;;15854:67;;;;;-1:-1:-1;;;15854:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15854:67:0;;;;;;;;;;;;;;;33656:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;33656:32:0;;::::1;::::0;;;::::1;::::0;;;33704:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;33579:171:::0;:::o;33409:162::-;15872:12;:10;:12::i;:::-;15862:6;;-1:-1:-1;;;;;15862:6:0;;;:22;;;15854:67;;;;;-1:-1:-1;;;15854:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15854:67:0;;;;;;;;;;;;;;;33503:60:::1;33547:5;33503:25;33515:12;33503:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;33488:12;:75:::0;-1:-1:-1;33409:162:0:o;17013:214::-;15872:12;:10;:12::i;:::-;15862:6;;-1:-1:-1;;;;;15862:6:0;;;:22;;;15854:67;;;;;-1:-1:-1;;;15854:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15854:67:0;;;;;;;;;;;;;;;17094:6:::1;::::0;;;17077:23;;-1:-1:-1;;;;;;17077:23:0;;::::1;-1:-1:-1::0;;;;;17094:6:0;::::1;17077:23;::::0;;;17111:19:::1;::::0;;17153:3:::1;:10:::0;::::1;17141:9;:22:::0;17179:40:::1;::::0;17094:6;;-1:-1:-1;;;;;;;;;;;17179:40:0;17094:6;;17179:40:::1;17013:214:::0;:::o;28786:143::-;-1:-1:-1;;;;;28894:18:0;;;28867:7;28894:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28786:143::o;32952:110::-;15872:12;:10;:12::i;:::-;15862:6;;-1:-1:-1;;;;;15862:6:0;;;:22;;;15854:67;;;;;-1:-1:-1;;;15854:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15854:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33019:27:0::1;33049:5;33019:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33019:35:0::1;::::0;;32952:110::o;16596:244::-;15872:12;:10;:12::i;:::-;15862:6;;-1:-1:-1;;;;;15862:6:0;;;:22;;;15854:67;;;;;-1:-1:-1;;;15854:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15854:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16685:22:0;::::1;16677:73;;;;-1:-1:-1::0;;;16677:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16787:6;::::0;;16766:38:::1;::::0;-1:-1:-1;;;;;16766:38:0;;::::1;::::0;16787:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16766:38:0;::::1;16815:6;:17:::0;;-1:-1:-1;;;;;;16815:17:0::1;-1:-1:-1::0;;;;;16815:17:0;;;::::1;::::0;;;::::1;::::0;;16596:244::o;8058:106::-;8146:10;8058:106;:::o;37148:337::-;-1:-1:-1;;;;;37241:19:0;;37233:68;;;;-1:-1:-1;;;37233:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37320:21:0;;37312:68;;;;-1:-1:-1;;;37312:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37393:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;37445:32;;;;;;;;;;;;;;;;;37148:337;;;:::o;37493:1773::-;-1:-1:-1;;;;;37615:18:0;;37607:68;;;;-1:-1:-1;;;37607:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37694:16:0;;37686:64;;;;-1:-1:-1;;;37686:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37778:1;37769:6;:10;37761:64;;;;-1:-1:-1;;;37761:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37847:7;:5;:7::i;:::-;-1:-1:-1;;;;;37839:15:0;:4;-1:-1:-1;;;;;37839:15:0;;;:32;;;;;37864:7;:5;:7::i;:::-;-1:-1:-1;;;;;37858:13:0;:2;-1:-1:-1;;;;;37858:13:0;;;37839:32;37836:125;;;37904:12;;37894:6;:22;;37886:75;;;;-1:-1:-1;;;37886:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38256:28;38287:24;38305:4;38287:9;:24::i;:::-;38256:55;;38351:12;;38327:20;:36;38324:112;;-1:-1:-1;38412:12:0;;38324:112;38499:29;;38475:53;;;;;;;38557;;-1:-1:-1;38594:16:0;;;;38593:17;38557:53;:91;;;;;38635:13;-1:-1:-1;;;;;38627:21:0;:4;-1:-1:-1;;;;;38627:21:0;;;38557:91;:129;;;;-1:-1:-1;38665:21:0;;;;;;;38557:129;38539:318;;;38736:29;;38713:52;;38809:36;38824:20;38809:14;:36::i;:::-;-1:-1:-1;;;;;39049:24:0;;38930:12;39049:24;;;:18;:24;;;;;;38945:4;;39049:24;;;:50;;-1:-1:-1;;;;;;39077:22:0;;;;;;:18;:22;;;;;;;;39049:50;39046:96;;;-1:-1:-1;39125:5:0;39046:96;39220:38;39235:4;39240:2;39243:6;39250:7;39220:14;:38::i;:::-;37493:1773;;;;;;:::o;4468:192::-;4554:7;4590:12;4582:6;;;;4574:29;;;;-1:-1:-1;;;4574:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4626:5:0;;;4468:192::o;35209:163::-;35250:7;35271:15;35288;35307:19;:17;:19::i;:::-;35270:56;;-1:-1:-1;35270:56:0;-1:-1:-1;35344:20:0;35270:56;;35344:11;:20::i;:::-;35337:27;;;;35209:163;:::o;5866:132::-;5924:7;5951:39;5955:1;5958;5951:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5944:46;5866:132;-1:-1:-1;;;5866:132:0:o;3565:181::-;3623:7;3655:5;;;3679:6;;;;3671:46;;;;;-1:-1:-1;;;3671:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34007:419;34066:7;34075;34084;34093;34102;34111;34132:23;34157:12;34171:18;34193:20;34205:7;34193:11;:20::i;:::-;34131:82;;;;;;34225:15;34242:23;34267:12;34283:50;34295:7;34304:4;34310:10;34322;:8;:10::i;:::-;34283:11;:50::i;:::-;34224:109;;;;-1:-1:-1;34224:109:0;;-1:-1:-1;34384:15:0;;-1:-1:-1;34401:4:0;;-1:-1:-1;34407:10:0;;-1:-1:-1;34007:419:0;;-1:-1:-1;;;;;34007:419:0:o;4029:136::-;4087:7;4114:43;4118:1;4121;4114:43;;;;;;;;;;;;;;;;;:3;:43::i;4919:471::-;4977:7;5222:6;5218:47;;-1:-1:-1;5252:1:0;5245:8;;5218:47;5289:5;;;5293:1;5289;:5;:1;5313:5;;;;;:10;5305:56;;;;-1:-1:-1;;;5305:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39274:977;27246:16;:23;;-1:-1:-1;;27246:23:0;27265:4;27246:23;;;:16;39425:27:::1;:20:::0;39450:1:::1;39425:24;:27::i;:::-;39410:42:::0;-1:-1:-1;39463:17:0::1;39483:30;:20:::0;39410:42;39483:24:::1;:30::i;:::-;39463:50:::0;-1:-1:-1;39816:21:0::1;39882:22;39899:4:::0;39882:16:::1;:22::i;:::-;40035:18;40056:41;:21;40082:14:::0;40056:25:::1;:41::i;:::-;40035:62;;40147:35;40160:9;40171:10;40147:12;:35::i;:::-;40200:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;27292:16:0;:24;;-1:-1:-1;;27292:24:0;;;-1:-1:-1;;;39274:977:0:o;41450:818::-;41561:7;41557:40;;41583:14;:12;:14::i;:::-;-1:-1:-1;;;;;41614:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;41638:22:0;;;;;;:11;:22;;;;;;;;41637:23;41614:46;41610:597;;;41677:48;41699:6;41707:9;41718:6;41677:21;:48::i;:::-;41610:597;;;-1:-1:-1;;;;;41748:19:0;;;;;;:11;:19;;;;;;;;41747:20;:46;;;;-1:-1:-1;;;;;;41771:22:0;;;;;;:11;:22;;;;;;;;41747:46;41743:464;;;41810:46;41830:6;41838:9;41849:6;41810:19;:46::i;41743:464::-;-1:-1:-1;;;;;41879:19:0;;;;;;:11;:19;;;;;;;;41878:20;:47;;;;-1:-1:-1;;;;;;41903:22:0;;;;;;:11;:22;;;;;;;;41902:23;41878:47;41874:333;;;41942:44;41960:6;41968:9;41979:6;41942:17;:44::i;41874:333::-;-1:-1:-1;;;;;42008:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42031:22:0;;;;;;:11;:22;;;;;;;;42008:45;42004:203;;;42070:48;42092:6;42100:9;42111:6;42070:21;:48::i;42004:203::-;42151:44;42169:6;42177:9;42188:6;42151:17;:44::i;:::-;42223:7;42219:41;;42245:15;:13;:15::i;:::-;41450:818;;;;:::o;35380:555::-;35477:7;;35513;;35430;;;;;35531:289;35555:9;:16;35551:20;;35531:289;;;35621:7;35597;:21;35605:9;35615:1;35605:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35605:12:0;35597:21;;;;;;;;;;;;;:31;;:66;;;35656:7;35632;:21;35640:9;35650:1;35640:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35640:12:0;35632:21;;;;;;;;;;;;;:31;35597:66;35593:97;;;35673:7;;35682;;35665:25;;;;;;;;;35593:97;35715:34;35727:7;:21;35735:9;35745:1;35735:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35735:12:0;35727:21;;;;;;;;;;;;;35715:7;;:11;:34::i;:::-;35705:44;;35774:34;35786:7;:21;35794:9;35804:1;35794:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35794:12:0;35786:21;;;;;;;;;;;;;35774:7;;:11;:34::i;:::-;35764:44;-1:-1:-1;35573:3:0;;35531:289;;;-1:-1:-1;35856:7:0;;35844;;:20;;:11;:20::i;:::-;35834:7;:30;35830:61;;;35874:7;;35883;;35866:25;;;;;;;;35830:61;35910:7;;-1:-1:-1;35919:7:0;-1:-1:-1;35380:555:0;;;:::o;6494:278::-;6580:7;6615:12;6608:5;6600:28;;;;-1:-1:-1;;;6600:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6639:9;6655:1;6651;:5;;;;;;;6494:278;-1:-1:-1;;;;;6494:278:0:o;34434:330::-;34494:7;34503;34512;34532:12;34547:24;34563:7;34547:15;:24::i;:::-;34532:39;;34582:18;34603:30;34625:7;34603:21;:30::i;:::-;34582:51;-1:-1:-1;34644:23:0;34670:33;34582:51;34670:17;:7;34682:4;34670:11;:17::i;:::-;:21;;:33::i;:::-;34644:59;34739:4;;-1:-1:-1;34745:10:0;;-1:-1:-1;34434:330:0;;-1:-1:-1;;;34434:330:0:o;34772:429::-;34887:7;;;;34943:24;:7;34955:11;34943;:24::i;:::-;34925:42;-1:-1:-1;34978:12:0;34993:21;:4;35002:11;34993:8;:21::i;:::-;34978:36;-1:-1:-1;35025:18:0;35046:27;:10;35061:11;35046:14;:27::i;:::-;35025:48;-1:-1:-1;35084:23:0;35110:33;35025:48;35110:17;:7;35122:4;35110:11;:17::i;:33::-;35162:7;;;;-1:-1:-1;35188:4:0;;-1:-1:-1;34772:429:0;;-1:-1:-1;;;;;;;34772:429:0:o;40259:589::-;40409:16;;;40423:1;40409:16;;;40385:21;40409:16;;;;;40385:21;40409:16;;;;;;;;;;-1:-1:-1;40409:16:0;40385:40;;40454:4;40436;40441:1;40436:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;40436:23:0;;;-1:-1:-1;;;;;40436:23:0;;;;;40480:15;-1:-1:-1;;;;;40480:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40480:22:0;40470:7;;:4;;40475:1;;40470:7;;;;;;;;;;;:32;-1:-1:-1;;;;;40470:32:0;;;-1:-1:-1;;;;;40470:32:0;;;;;40515:62;40532:4;40547:15;40565:11;40515:8;:62::i;:::-;40616:15;-1:-1:-1;;;;;40616:66:0;;40697:11;40723:1;40767:4;40794;40814:15;40616:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40616:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40856:513;41004:62;41021:4;41036:15;41054:11;41004:8;:62::i;:::-;41109:15;-1:-1:-1;;;;;41109:31:0;;41148:9;41181:4;41201:11;41227:1;41270;41313:7;:5;:7::i;:::-;41335:15;41109:252;;;;;;;;;;;;;-1:-1:-1;;;;;41109:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41109:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36642:234;36688:7;;:12;:34;;;;-1:-1:-1;36704:13:0;;:18;36688:34;36685:46;;;36724:7;;36685:46;36761:7;;;36743:15;:25;36803:13;;;36779:21;:37;-1:-1:-1;36829:11:0;;;;36851:17;36642:234;:::o;43369:563::-;43472:15;43489:23;43514:12;43528:23;43553:12;43567:18;43589:19;43600:7;43589:10;:19::i;:::-;-1:-1:-1;;;;;43637:15:0;;;;;;:7;:15;;;;;;43471:137;;-1:-1:-1;43471:137:0;;-1:-1:-1;43471:137:0;;-1:-1:-1;43471:137:0;-1:-1:-1;43471:137:0;-1:-1:-1;43471:137:0;-1:-1:-1;43637:28:0;;43657:7;43637:19;:28::i;:::-;-1:-1:-1;;;;;43619:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43694:7;:15;;;;:28;;43714:7;43694:19;:28::i;:::-;-1:-1:-1;;;;;43676:15:0;;;;;;;:7;:15;;;;;;:46;;;;43754:18;;;;;;;:39;;43777:15;43754:22;:39::i;:::-;-1:-1:-1;;;;;43733:18:0;;;;;;:7;:18;;;;;:60;43804:26;43819:10;43804:14;:26::i;:::-;43841:23;43853:4;43859;43841:11;:23::i;:::-;43897:9;-1:-1:-1;;;;;43880:44:0;43889:6;-1:-1:-1;;;;;43880:44:0;;43908:15;43880:44;;;;;;;;;;;;;;;;;;43369:563;;;;;;;;;:::o;42786:575::-;42887:15;42904:23;42929:12;42943:23;42968:12;42982:18;43004:19;43015:7;43004:10;:19::i;:::-;-1:-1:-1;;;;;43052:15:0;;;;;;:7;:15;;;;;;42886:137;;-1:-1:-1;42886:137:0;;-1:-1:-1;42886:137:0;;-1:-1:-1;42886:137:0;-1:-1:-1;42886:137:0;-1:-1:-1;42886:137:0;-1:-1:-1;43052:28:0;;42886:137;43052:19;:28::i;:::-;-1:-1:-1;;;;;43034:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;43112:18;;;;;:7;:18;;;;;:39;;43135:15;43112:22;:39::i;:::-;-1:-1:-1;;;;;43091:18:0;;;;;;:7;:18;;;;;;;;:60;;;;43183:7;:18;;;;:39;;43206:15;43183:22;:39::i;42276:502::-;42375:15;42392:23;42417:12;42431:23;42456:12;42470:18;42492:19;42503:7;42492:10;:19::i;:::-;-1:-1:-1;;;;;42540:15:0;;;;;;:7;:15;;;;;;42374:137;;-1:-1:-1;42374:137:0;;-1:-1:-1;42374:137:0;;-1:-1:-1;42374:137:0;-1:-1:-1;42374:137:0;-1:-1:-1;42374:137:0;-1:-1:-1;42540:28:0;;42374:137;42540:19;:28::i;32187:634::-;32290:15;32307:23;32332:12;32346:23;32371:12;32385:18;32407:19;32418:7;32407:10;:19::i;:::-;-1:-1:-1;;;;;32455:15:0;;;;;;:7;:15;;;;;;32289:137;;-1:-1:-1;32289:137:0;;-1:-1:-1;32289:137:0;;-1:-1:-1;32289:137:0;-1:-1:-1;32289:137:0;-1:-1:-1;32289:137:0;-1:-1:-1;32455:28:0;;32475:7;32455:19;:28::i;:::-;-1:-1:-1;;;;;32437:15:0;;;;;;:7;:15;;;;;;;;:46;;;;32512:7;:15;;;;:28;;32532:7;32512:19;:28::i;36884:125::-;36938:15;;36928:7;:25;36980:21;;36964:13;:37;36884:125::o;36306:154::-;36370:7;36397:55;36436:5;36397:20;36409:7;;36397;:11;;:20;;;;:::i;36468:166::-;36538:7;36565:61;36610:5;36565:26;36577:13;;36565:7;:11;;:26;;;;:::i;35943:355::-;36006:19;36029:10;:8;:10::i;:::-;36006:33;-1:-1:-1;36050:18:0;36071:27;:10;36006:33;36071:14;:27::i;:::-;36150:4;36134:22;;;;:7;:22;;;;;;36050:48;;-1:-1:-1;36134:38:0;;36050:48;36134:26;:38::i;:::-;36125:4;36109:22;;;;:7;:22;;;;;;;;:63;;;;36186:11;:26;;;;;;36183:107;;;36268:4;36252:22;;;;:7;:22;;;;;;:38;;36279:10;36252:26;:38::i;:::-;36243:4;36227:22;;;;:7;:22;;;;;:63;36183:107;35943:355;;;:::o;33852:147::-;33930:7;;:17;;33942:4;33930:11;:17::i;:::-;33920:7;:27;33971:10;;:20;;33986:4;33971:14;:20::i;:::-;33958:10;:33;-1:-1:-1;;33852:147:0:o
Swarm Source
ipfs://48693f335c175f059e46da9203c5603a63a7c2df0b7c67fbd7f9792f4c67c3b2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2,092.49 | 0.00047698 | $0.998081 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.