ERC-20
Staking
Overview
Max Total Supply
36,988,970.321706126895116 UPP
Holders
563 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
7,668.96327295540162454 UPPValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
UnipumpDefaults
Compiler Version
v0.7.0+commit.9e61f92b
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-08-21 */ pragma solidity ^0.7.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: browser/IUnipumpDrain.sol interface IUnipumpDrain { function drain(address token) external; } // File: browser/openzeppelin/Context.sol abstract contract UnipumpErc20Helper { function transferMax(address token, address from, address to) internal returns (uint256 amountTransferred) { uint256 balance = IERC20(token).balanceOf(from); if (balance == 0) { return 0; } uint256 allowed = IERC20(token).allowance(from, to); amountTransferred = allowed > balance ? balance : allowed; if (amountTransferred == 0) { return 0; } require (IERC20(token).transferFrom(from, to, amountTransferred), "Transfer failed"); } } // File: browser/IUnipumpContest.sol interface IUnipumpContest { } // File: browser/IUnipump.sol interface IUnipump is IERC20 { event Sale(bool indexed _saleActive); event LiquidityCrisis(); function WETH() external view returns (address); function groupManager() external view returns (IUnipumpGroupManager); function escrow() external view returns (IUnipumpEscrow); function staking() external view returns (IUnipumpStaking); function contest() external view returns (IUnipumpContest); function init( IUnipumpEscrow _escrow, IUnipumpStaking _staking) external; function startUnipumpSale(uint256 _tokensPerEth, uint256 _maxSoldEth) external; function start( IUnipumpGroupManager _groupManager, IUnipumpContest _contest) external; function isSaleActive() external view returns (bool); function tokensPerEth() external view returns (uint256); function maxSoldEth() external view returns (uint256); function soldEth() external view returns (uint256); function buy() external payable; function minSecondsUntilLiquidityCrisis() external view returns (uint256); function createLiquidityCrisis() external payable; } // File: browser/UnipumpDrain.sol abstract contract UnipumpDrain is IUnipumpDrain { address payable immutable drainTarget; constructor() { drainTarget = msg.sender; } function drain(address token) public override { uint256 amount; if (token == address(0)) { require (address(this).balance > 0, "Nothing to send"); amount = _drainAmount(token, address(this).balance); require (amount > 0, "Nothing allowed to send"); (bool success,) = drainTarget.call{ value: amount }(""); require (success, "Transfer failed"); return; } amount = IERC20(token).balanceOf(address(this)); require (amount > 0, "Nothing to send"); amount = _drainAmount(token, amount); require (amount > 0, "Nothing allowed to send"); require (IERC20(token).transfer(drainTarget, amount), "Transfer failed"); } function _drainAmount(address token, uint256 available) internal virtual returns (uint256 amount); } // File: browser/IUnipumpStaking.sol interface IUnipumpStaking { event Stake(address indexed _staker, uint256 _amount, uint256 _epochCount); event Reward(address indexed _staker, uint256 _reward); event RewardPotIncrease(uint256 _amount); function stakingRewardPot() external view returns (uint256); function currentEpoch() external view returns (uint256); function nextEpochTimestamp() external view returns (uint256); function isActivated() external view returns (bool); function secondsUntilCanActivate() external view returns (uint256); function totalStaked() external view returns (uint256); function increaseRewardsPot() external; function activate() external; function claimRewardsAt(uint256 index) external; function claimRewards() external; function updateEpoch() external returns (bool); function stakeForProfit(uint256 epochCount) external; } // File: browser/IUnipumpEscrow.sol interface IUnipumpEscrow is IUnipumpDrain { function start() external; function available() external view returns (uint256); } // File: browser/IUnipumpTradingGroup.sol interface IUnipumpTradingGroup { function leader() external view returns (address); function close() external; function closeWithNonzeroTokenBalances() external; function anyNonzeroTokenBalances() external view returns (bool); function tokenList() external view returns (IUnipumpTokenList); function maxSecondsRemaining() external view returns (uint256); function group() external view returns (IUnipumpGroup); function externalBalanceChanges(address token) external view returns (bool); function startTime() external view returns (uint256); function endTime() external view returns (uint256); function maxEndTime() external view returns (uint256); function startingWethBalance() external view returns (uint256); function finalWethBalance() external view returns (uint256); function leaderWethProfitPayout() external view returns (uint256); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, uint256 deadline ) external; function withdraw(address token) external; } // File: browser/IUnipumpTokenList.sol interface IUnipumpTokenList { function parentList() external view returns (IUnipumpTokenList); function isLocked() external view returns (bool); function tokens(uint256 index) external view returns (address); function exists(address token) external view returns (bool); function tokenCount() external view returns (uint256); function lock() external; function add(address token) external; function addMany(address[] calldata _tokens) external; function remove(address token) external; } // File: browser/IUnipumpGroup.sol interface IUnipumpGroup { function contribute() external payable; function abort() external; function startPumping() external; function isActive() external view returns (bool); function withdraw() external; function leader() external view returns (address); function tokenList() external view returns (IUnipumpTokenList); function leaderUppCollateral() external view returns (uint256); function requiredMemberUppFee() external view returns (uint256); function minEthToJoin() external view returns (uint256); function minEthToStart() external view returns (uint256); function maxEthAcceptable() external view returns (uint256); function maxRunTimeSeconds() external view returns (uint256); function leaderProfitShareOutOf10000() external view returns (uint256); function memberCount() external view returns (uint256); function members(uint256 at) external view returns (address); function contributions(address member) external view returns (uint256); function totalContributions() external view returns (uint256); function aborted() external view returns (bool); function tradingGroup() external view returns (IUnipumpTradingGroup); } // File: browser/IUnipumpGroupFactory.sol interface IUnipumpGroupFactory { function createGroup( address leader, IUnipumpTokenList unipumpTokenList, uint256 uppCollateral, uint256 requiredMemberUppFee, uint256 minEthToJoin, uint256 minEthToStart, uint256 startTimeout, uint256 maxEthAcceptable, uint256 maxRunTimeSeconds, uint256 leaderProfitShareOutOf10000 ) external returns (IUnipumpGroup unipumpGroup); } // File: browser/IUnipumpGroupManager.sol interface IUnipumpGroupManager { function groupLeaders(uint256 at) external view returns (address); function groupLeaderCount() external view returns (uint256); function groups(uint256 at) external view returns (IUnipumpGroup); function groupCount() external view returns (uint256); function groupCountByLeader(address leader) external view returns (uint256); function groupsByLeader(address leader, uint256 at) external view returns (IUnipumpGroup); function createGroup( IUnipumpTokenList tokenList, uint256 uppCollateral, uint256 requiredMemberUppFee, uint256 minEthToJoin, uint256 minEthToStart, uint256 startTimeout, uint256 maxEthAcceptable, uint256 maxRunTimeSeconds, uint256 leaderProfitShareOutOf10000 ) external returns (IUnipumpGroup group); } // File: browser/uniswap/IWETH.sol pragma solidity >=0.5.0; interface IWETH { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; } // File: browser/uniswap/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: browser/uniswap/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: browser/uniswap/IUniswapV2Pair.sol 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; } // File: browser/uniswap/IUniswapV2Factory.sol 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; } // File: browser/openzeppelin/Address.sol /** * @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); } } } } // File: browser/openzeppelin/SafeMath.sol /** * @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; } } // File: browser/openzeppelin/IERC20.sol /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: browser/openzeppelin/ERC20.sol /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: browser/Unipump.sol contract Unipump is ERC20, UnipumpDrain, IUnipump, UnipumpErc20Helper { address payable immutable owner; IUniswapV2Factory immutable uniswapV2Factory; IUniswapV2Router02 immutable uniswapV2Router; address immutable public override WETH; IUniswapV2Pair public uniswapEthUppPair; IUnipumpGroupManager public override groupManager; IUnipumpEscrow public override escrow; IUnipumpStaking public override staking; IUnipumpContest public override contest; uint256 public override tokensPerEth; uint256 public override maxSoldEth; uint256 public override soldEth; uint256 initialLiquidityTokens; uint256 minLiquidityCrisisTime; constructor( IUniswapV2Factory _uniswapV2Factory, // 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f IUniswapV2Router02 _uniswapV2Router // 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ) ERC20("Unipump", "UPP") { require (address(_uniswapV2Factory) != address(0)); require (address(_uniswapV2Router) != address(0)); owner = msg.sender; uniswapV2Factory = _uniswapV2Factory; uniswapV2Router = _uniswapV2Router; address weth = _uniswapV2Router.WETH(); WETH = weth; } modifier ownerOnly() { require(msg.sender == owner, "Owner only"); _; } function init( IUnipumpEscrow _escrow, IUnipumpStaking _staking ) public override ownerOnly() { require (address(_escrow) != address(0)); require (address(_staking) != address(0)); if (address(uniswapEthUppPair) == address(0)) { uniswapEthUppPair = IUniswapV2Pair(uniswapV2Factory.createPair(WETH, address(this))); } else { require (address(this).balance == 0 && IERC20(WETH).balanceOf(address(this)) == 0, "Already initialized"); } escrow = _escrow; staking = _staking; } function startUnipumpSale(uint256 _tokensPerEth, uint256 _maxSoldEth) public override ownerOnly() { require (address(groupManager) == address(0), "Operations have already begun"); require (tokensPerEth == 0 || _tokensPerEth <= tokensPerEth, "The price can only be pumped higher"); require (_tokensPerEth > 0 || _maxSoldEth == 0); soldEth = 0; maxSoldEth = _maxSoldEth; if (_tokensPerEth > 0) { tokensPerEth = _tokensPerEth; } emit Sale(true); } function isSaleActive() public override view returns (bool) { return tokensPerEth > 0 && soldEth < maxSoldEth; } function start( IUnipumpGroupManager _groupManager, IUnipumpContest _contest) public override ownerOnly() { require (address(_groupManager) != address(0)); require (address(groupManager) == address(0), "Operations cannot be stopped after having been started"); require (address(_contest) != address(0)); maxSoldEth = 0; groupManager = _groupManager; contest = _contest; uint256 sold = totalSupply(); // 'sold' represents 40% of the total supply require (sold > 0); uint256 wethBalance = IERC20(WETH).balanceOf(address(this)); uint256 totalLiquidityEth = address(this).balance / 2 + wethBalance / 2; uint256 totalLiquidityUpp = totalLiquidityEth * tokensPerEth * 9 / 10; // pump price by 10% when uniswap is funded _mint(address(escrow), sold / 2); // 20% for marketing, team _mint(address(contest), sold / 4); // 10% for public pump contests _mint(address(this), totalLiquidityUpp + sold / 4); // liquidity (~20%) for uniswap + 10% _approve(address(this), address(staking), sold / 4); // 10% _approve(address(this), address(uniswapV2Router), totalLiquidityUpp); staking.increaseRewardsPot(); escrow.start(); if (wethBalance < totalLiquidityEth) { IWETH(WETH).deposit{ value: totalLiquidityEth - wethBalance }(); } IERC20(WETH).approve(address(uniswapV2Router), totalLiquidityEth); (,,initialLiquidityTokens) = uniswapV2Router.addLiquidity( address(this), WETH, totalLiquidityUpp, totalLiquidityEth, totalLiquidityUpp, totalLiquidityEth, address(this), block.timestamp); minLiquidityCrisisTime = block.timestamp + 60 * 60 * 24 * 30; // Creating a liquidity crisis isn't available for the first month emit Sale(false); } receive() external payable { uint256 tokens = tokensPerEth * msg.value; uint256 sold = soldEth; require (address(groupManager) == address(0) && tokens > 0 && sold < maxSoldEth, "Tokens are not for sale or you did not send any ETH/WETH"); _mint(msg.sender, tokens); soldEth = sold + msg.value; } function buy() public payable override { uint256 wethAmount = transferMax(WETH, msg.sender, address(this)); uint256 totalAmount = wethAmount + msg.value; uint256 tokens = tokensPerEth * totalAmount; uint256 sold = soldEth; require (address(groupManager) == address(0) && tokens > 0 && sold < maxSoldEth, "Tokens are not for sale or you did not send any ETH/WETH"); _mint(msg.sender, tokens); soldEth = sold + totalAmount; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { require (from == address(0) || address(groupManager) != address(0), "The contract has not yet become operational"); super._beforeTokenTransfer(from, to, amount); } function minSecondsUntilLiquidityCrisis() public view override returns (uint256) { uint256 min = minLiquidityCrisisTime; if (min <= block.timestamp) { return 0; } return min - block.timestamp; } // Reduce some liquidity - use to enhance pump effectiveness during bull run! function createLiquidityCrisis() external payable override { require (block.timestamp >= minLiquidityCrisisTime, "It's too early to create a liquidity crisis"); require (msg.sender == owner || msg.value >= 100 ether, "This can only be called by paying 100 ETH"); minLiquidityCrisisTime = block.timestamp + 60 * 60 * 24 * 90; // No more for 3 months; uint256 liquidity = initialLiquidityTokens / 4; uint256 balance = uniswapEthUppPair.balanceOf(address(this)); if (liquidity > balance) { liquidity = balance; } if (liquidity == 0) { return; } uniswapEthUppPair.approve(address(uniswapV2Router), liquidity); (uint256 amountToken,) = uniswapV2Router.removeLiquidityETH( address(this), liquidity, 0, 0, owner, block.timestamp); _transfer(owner, address(this), amountToken); _approve(address(this), address(staking), amountToken); staking.increaseRewardsPot(); emit LiquidityCrisis(); } function _drainAmount( address token, uint256 available ) internal override view returns (uint256 amount) { amount = available; if (address(groupManager) == address(0) || // Don't allow any drainage until the contract is operational and liquidity funding has been provided token == address(uniswapEthUppPair)) // Don't allow drainage of liquidity { amount = 0; } } } // File: browser/UnipumpDefaults.sol contract UnipumpDefaults is Unipump { constructor() Unipump( IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f), // uniswap v2 factory on ethereum mainnet IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D) // uniswap v2 router on ethereum mainnet ) { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"LiquidityCrisis","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_saleActive","type":"bool"}],"name":"Sale","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":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contest","outputs":[{"internalType":"contract IUnipumpContest","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createLiquidityCrisis","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"drain","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"escrow","outputs":[{"internalType":"contract IUnipumpEscrow","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"groupManager","outputs":[{"internalType":"contract IUnipumpGroupManager","name":"","type":"address"}],"stateMutability":"view","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":"contract IUnipumpEscrow","name":"_escrow","type":"address"},{"internalType":"contract IUnipumpStaking","name":"_staking","type":"address"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSoldEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minSecondsUntilLiquidityCrisis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"soldEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"contract IUnipumpStaking","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IUnipumpGroupManager","name":"_groupManager","type":"address"},{"internalType":"contract IUnipumpContest","name":"_contest","type":"address"}],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokensPerEth","type":"uint256"},{"internalType":"uint256","name":"_maxSoldEth","type":"uint256"}],"name":"startUnipumpSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensPerEth","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapEthUppPair","outputs":[{"internalType":"contract IUniswapV2Pair","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6101206040523480156200001257600080fd5b50735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f737a250d5630b4cf539739df2c5dacb4c659f2488d604051806040016040528060078152602001660556e6970756d760cc1b8152506040518060400160405280600381526020016205550560ec1b81525081600390805190602001906200009192919062000196565b508051620000a790600490602084019062000196565b50506005805460ff19166012179055503360601b6080526001600160a01b038216620000d257600080fd5b6001600160a01b038116620000e657600080fd5b33606090811b60a0526001600160601b031983821b811660c0529082901b1660e052604080516315ab88c960e31b815290516000916001600160a01b0384169163ad5c464891600480820192602092909190829003018186803b1580156200014d57600080fd5b505afa15801562000162573d6000803e3d6000fd5b505050506040513d60208110156200017957600080fd5b505160601b6001600160601b031916610100525062000232915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001d957805160ff191683800117855562000209565b8280016001018555821562000209579182015b8281111562000209578251825591602001919060010190620001ec565b50620002179291506200021b565b5090565b5b808211156200021757600081556001016200021c565b60805160601c60a05160601c60c05160601c60e05160601c6101005160601c612537620002d660003980610e6b5280611089528061110052806111e05280611598528061165a5280611b1f5280611c0e5250806109485280610a405280610f8a528061112f5280611234525080611af05250806108065280610a0e5280610ab85280610d4c52806113c45280611a5452508061179c528061196f52506125376000f3fe6080604052600436106101ba5760003560e01c806390883126116100ec578063b26bc4831161008a578063e2fdcc1711610064578063e2fdcc1714610632578063e3ac83da14610647578063ece531321461065c578063f09a40161461068f5761023d565b8063b26bc483146105cd578063cbdd69b5146105e2578063dd62ed3e146105f75761023d565b8063a457c2d7116100c6578063a457c2d71461053e578063a6f2ae3a14610577578063a9059cbb1461057f578063ad5c4648146105b85761023d565b806390883126146104e457806395d89b41146104f95780639773e95b1461050e5761023d565b8063313ce567116101595780634cf088d9116101335780634cf088d914610472578063564566a8146104875780636e48288f1461049c57806370a08231146104b15761023d565b8063313ce567146103d357806339509351146103fe5780633ccfe887146104375761023d565b8063095ea7b311610195578063095ea7b3146102fd5780630b6c3d901461034a57806318160ddd1461037b57806323b872dd146103905761023d565b8062f909031461024257806306fdde031461024c578063073077e6146102d65761023d565b3661023d57600a54600c5460065434909202916001600160a01b03161580156101e35750600082115b80156101f05750600b5481105b61022b5760405162461bcd60e51b81526004018080602001828103825260388152602001806123616038913960400191505060405180910390fd5b61023533836106ca565b3401600c5550005b600080fd5b61024a6107ba565b005b34801561025857600080fd5b50610261610b8d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029b578181015183820152602001610283565b50505050905090810190601f1680156102c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e257600080fd5b506102eb610c24565b60408051918252519081900360200190f35b34801561030957600080fd5b506103366004803603604081101561032057600080fd5b506001600160a01b038135169060200135610c2a565b604080519115158252519081900360200190f35b34801561035657600080fd5b5061035f610c48565b604080516001600160a01b039092168252519081900360200190f35b34801561038757600080fd5b506102eb610c5c565b34801561039c57600080fd5b50610336600480360360608110156103b357600080fd5b506001600160a01b03813581169160208101359091169060400135610c62565b3480156103df57600080fd5b506103e8610cea565b6040805160ff9092168252519081900360200190f35b34801561040a57600080fd5b506103366004803603604081101561042157600080fd5b506001600160a01b038135169060200135610cf3565b34801561044357600080fd5b5061024a6004803603604081101561045a57600080fd5b506001600160a01b0381358116916020013516610d41565b34801561047e57600080fd5b5061035f6112ee565b34801561049357600080fd5b506103366112fd565b3480156104a857600080fd5b506102eb611318565b3480156104bd57600080fd5b506102eb600480360360208110156104d457600080fd5b50356001600160a01b031661131e565b3480156104f057600080fd5b506102eb611339565b34801561050557600080fd5b50610261611358565b34801561051a57600080fd5b5061024a6004803603604081101561053157600080fd5b50803590602001356113b9565b34801561054a57600080fd5b506103366004803603604081101561056157600080fd5b506001600160a01b038135169060200135611529565b61024a611591565b34801561058b57600080fd5b50610336600480360360408110156105a257600080fd5b506001600160a01b038135169060200135611644565b3480156105c457600080fd5b5061035f611658565b3480156105d957600080fd5b5061035f61167c565b3480156105ee57600080fd5b506102eb61168b565b34801561060357600080fd5b506102eb6004803603604081101561061a57600080fd5b506001600160a01b0381358116916020013516611691565b34801561063e57600080fd5b5061035f6116bc565b34801561065357600080fd5b5061035f6116cb565b34801561066857600080fd5b5061024a6004803603602081101561067f57600080fd5b50356001600160a01b03166116da565b34801561069b57600080fd5b5061024a600480360360408110156106b257600080fd5b506001600160a01b0381358116916020013516611a49565b6001600160a01b038216610725576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61073160008383611cf7565b60025461073e9082611d5e565b6002556001600160a01b0382166000908152602081905260409020546107649082611d5e565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600e544210156107fb5760405162461bcd60e51b815260040180806020018281038252602b81526020018061246b602b913960400191505060405180910390fd5b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148061083b575068056bc75e2d631000003410155b6108765760405162461bcd60e51b81526004018080602001828103825260298152602001806123bf6029913960400191505060405180910390fd5b6276a7004201600e55600d54600554604080516370a0823160e01b8152306004808301919091529151919093049260009261010090046001600160a01b0316916370a0823191602480820192602092909190829003018186803b1580156108dc57600080fd5b505afa1580156108f0573d6000803e3d6000fd5b505050506040513d602081101561090657600080fd5b5051905080821115610916578091505b81610922575050610b8b565b600560019054906101000a90046001600160a01b03166001600160a01b031663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156109ae57600080fd5b505af11580156109c2573d6000803e3d6000fd5b505050506040513d60208110156109d857600080fd5b505060408051629d473b60e21b815230600482015260248101849052600060448201819052606482018190526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660848401524260a4840152835191937f0000000000000000000000000000000000000000000000000000000000000000909116926302751cec9260c4808301939282900301818787803b158015610a8557600080fd5b505af1158015610a99573d6000803e3d6000fd5b505050506040513d6040811015610aaf57600080fd5b50519050610ade7f00000000000000000000000000000000000000000000000000000000000000003083611db8565b600854610af69030906001600160a01b031683611f13565b600860009054906101000a90046001600160a01b03166001600160a01b03166309707ef76040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610b4657600080fd5b505af1158015610b5a573d6000803e3d6000fd5b50506040517f0593afacf22ee46ef2b32008806effce1a4fff5031b1788bc3665c6d0beb4657925060009150a15050505b565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c195780601f10610bee57610100808354040283529160200191610c19565b820191906000526020600020905b815481529060010190602001808311610bfc57829003601f168201915b505050505090505b90565b600b5481565b6000610c3e610c37611fff565b8484611f13565b5060015b92915050565b60055461010090046001600160a01b031681565b60025490565b6000610c6f848484611db8565b610cdf84610c7b611fff565b610cda8560405180606001604052806028815260200161241e602891396001600160a01b038a16600090815260016020526040812090610cb9611fff565b6001600160a01b031681526020810191909152604001600020549190612003565b611f13565b5060015b9392505050565b60055460ff1690565b6000610c3e610d00611fff565b84610cda8560016000610d11611fff565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611d5e565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610dab576040805162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b604482015290519081900360640190fd5b6001600160a01b038216610dbe57600080fd5b6006546001600160a01b031615610e065760405162461bcd60e51b81526004018080602001828103825260368152602001806123e86036913960400191505060405180910390fd5b6001600160a01b038116610e1957600080fd5b6000600b819055600680546001600160a01b038086166001600160a01b0319928316179092556009805492851692909116919091179055610e58610c5c565b905060008111610e6757600080fd5b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610ed657600080fd5b505afa158015610eea573d6000803e3d6000fd5b505050506040513d6020811015610f0057600080fd5b50519050600060028204600247040190506000600a8054830260090281610f2357fe5b6007549190049150610f42906001600160a01b03166002865b046106ca565b600954610f5a906001600160a01b0316600486610f3c565b610f69306004860483016106ca565b600854610f849030906001600160a01b031660048704611f13565b610faf307f000000000000000000000000000000000000000000000000000000000000000083611f13565b600860009054906101000a90046001600160a01b03166001600160a01b03166309707ef76040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610fff57600080fd5b505af1158015611013573d6000803e3d6000fd5b50505050600760009054906101000a90046001600160a01b03166001600160a01b031663be9a65556040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561106757600080fd5b505af115801561107b573d6000803e3d6000fd5b50505050818310156110fe577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db08484036040518263ffffffff1660e01b81526004016000604051808303818588803b1580156110e457600080fd5b505af11580156110f8573d6000803e3d6000fd5b50505050505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663095ea7b37f0000000000000000000000000000000000000000000000000000000000000000846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561119557600080fd5b505af11580156111a9573d6000803e3d6000fd5b505050506040513d60208110156111bf57600080fd5b50506040805162e8e33760e81b815230600482018190526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116602484015260448301859052606483018690526084830185905260a4830186905260c48301919091524260e483015291517f00000000000000000000000000000000000000000000000000000000000000009092169163e8e3370091610104808201926060929091908290030181600087803b15801561128057600080fd5b505af1158015611294573d6000803e3d6000fd5b505050506040513d60608110156112aa57600080fd5b50604090810151600d5562278d004201600e55516000907f3875226dfcbcc1f9d960fb57c08ec839f735bd6446aa9d0cec7503d960b1688e908290a2505050505050565b6008546001600160a01b031681565b600080600a541180156113135750600b54600c54105b905090565b600c5481565b6001600160a01b031660009081526020819052604090205490565b600e54600090428111611350576000915050610c21565b429003905090565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c195780601f10610bee57610100808354040283529160200191610c19565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611423576040805162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b604482015290519081900360640190fd5b6006546001600160a01b031615611481576040805162461bcd60e51b815260206004820152601d60248201527f4f7065726174696f6e73206861766520616c726561647920626567756e000000604482015290519081900360640190fd5b600a5415806114925750600a548211155b6114cd5760405162461bcd60e51b81526004018080602001828103825260238152602001806124966023913960400191505060405180910390fd5b60008211806114da575080155b6114e357600080fd5b6000600c55600b81905581156114f957600a8290555b6040516001907f3875226dfcbcc1f9d960fb57c08ec839f735bd6446aa9d0cec7503d960b1688e90600090a25050565b6000610c3e611536611fff565b84610cda856040518060600160405280602581526020016124dd6025913960016000611560611fff565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612003565b60006115be7f0000000000000000000000000000000000000000000000000000000000000000333061209a565b600a54600c5460065492935034840192918302916001600160a01b03161580156115e85750600082115b80156115f55750600b5481105b6116305760405162461bcd60e51b81526004018080602001828103825260388152602001806123616038913960400191505060405180910390fd5b61163a33836106ca565b909101600c555050565b6000610c3e611651611fff565b8484611db8565b7f000000000000000000000000000000000000000000000000000000000000000081565b6006546001600160a01b031681565b600a5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546001600160a01b031681565b6009546001600160a01b031681565b60006001600160a01b03821661184b5760004711611731576040805162461bcd60e51b815260206004820152600f60248201526e139bdd1a1a5b99c81d1bc81cd95b99608a1b604482015290519081900360640190fd5b61173b82476122b6565b90506000811161178c576040805162461bcd60e51b8152602060048201526017602482015276139bdd1a1a5b99c8185b1b1bddd959081d1bc81cd95b99604a1b604482015290519081900360640190fd5b6040516000906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169083908381818185875af1925050503d80600081146117f7576040519150601f19603f3d011682016040523d82523d6000602084013e6117fc565b606091505b5050905080611844576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b5050611a46565b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561189157600080fd5b505afa1580156118a5573d6000803e3d6000fd5b505050506040513d60208110156118bb57600080fd5b5051905080611903576040805162461bcd60e51b815260206004820152600f60248201526e139bdd1a1a5b99c81d1bc81cd95b99608a1b604482015290519081900360640190fd5b61190d82826122b6565b90506000811161195e576040805162461bcd60e51b8152602060048201526017602482015276139bdd1a1a5b99c8185b1b1bddd959081d1bc81cd95b99604a1b604482015290519081900360640190fd5b816001600160a01b031663a9059cbb7f0000000000000000000000000000000000000000000000000000000000000000836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156119d557600080fd5b505af11580156119e9573d6000803e3d6000fd5b505050506040513d60208110156119ff57600080fd5b5051611a44576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b505b50565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611ab3576040805162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b604482015290519081900360640190fd5b6001600160a01b038216611ac657600080fd5b6001600160a01b038116611ad957600080fd5b60055461010090046001600160a01b0316611be5577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c9c653967f0000000000000000000000000000000000000000000000000000000000000000306040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b0316815260200192505050602060405180830381600087803b158015611b8e57600080fd5b505af1158015611ba2573d6000803e3d6000fd5b505050506040513d6020811015611bb857600080fd5b5051600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055611cc9565b47158015611c825750604080516370a0823160e01b815230600482015290516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016916370a08231916024808301926020929190829003018186803b158015611c5457600080fd5b505afa158015611c68573d6000803e3d6000fd5b505050506040513d6020811015611c7e57600080fd5b5051155b611cc9576040805162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b604482015290519081900360640190fd5b600780546001600160a01b039384166001600160a01b03199182161790915560088054929093169116179055565b6001600160a01b0383161580611d1757506006546001600160a01b031615155b611d525760405162461bcd60e51b815260040180806020018281038252602b815260200180612314602b913960400191505060405180910390fd5b611d598383835b505050565b600082820183811015610ce3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316611dfd5760405162461bcd60e51b81526004018080602001828103825260258152602001806124466025913960400191505060405180910390fd5b6001600160a01b038216611e425760405162461bcd60e51b81526004018080602001828103825260238152602001806122f16023913960400191505060405180910390fd5b611e4d838383611cf7565b611e8a81604051806060016040528060268152602001612399602691396001600160a01b0386166000908152602081905260409020549190612003565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611eb99082611d5e565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b038316611f585760405162461bcd60e51b81526004018080602001828103825260248152602001806124b96024913960400191505060405180910390fd5b6001600160a01b038216611f9d5760405162461bcd60e51b815260040180806020018281038252602281526020018061233f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b3390565b600081848411156120925760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561205757818101518382015260200161203f565b50505050905090810190601f1680156120845780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080846001600160a01b03166370a08231856040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156120ea57600080fd5b505afa1580156120fe573d6000803e3d6000fd5b505050506040513d602081101561211457600080fd5b5051905080612127576000915050610ce3565b6000856001600160a01b031663dd62ed3e86866040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b15801561218757600080fd5b505afa15801561219b573d6000803e3d6000fd5b505050506040513d60208110156121b157600080fd5b505190508181116121c257806121c4565b815b9250826121d657600092505050610ce3565b856001600160a01b03166323b872dd8686866040518463ffffffff1660e01b815260040180846001600160a01b03168152602001836001600160a01b031681526020018281526020019350505050602060405180830381600087803b15801561223e57600080fd5b505af1158015612252573d6000803e3d6000fd5b505050506040513d602081101561226857600080fd5b50516122ad576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b50509392505050565b60065481906001600160a01b031615806122e257506005546001600160a01b0384811661010090920416145b15610c42575060009291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737354686520636f6e747261637420686173206e6f7420796574206265636f6d65206f7065726174696f6e616c45524332303a20617070726f766520746f20746865207a65726f2061646472657373546f6b656e7320617265206e6f7420666f722073616c65206f7220796f7520646964206e6f742073656e6420616e79204554482f5745544845524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365546869732063616e206f6e6c792062652063616c6c656420627920706179696e6720313030204554484f7065726174696f6e732063616e6e6f742062652073746f7070656420616674657220686176696e67206265656e207374617274656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734974277320746f6f206561726c7920746f206372656174652061206c6971756964697479206372697369735468652070726963652063616e206f6e6c792062652070756d7065642068696768657245524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220525ef51f08395eefc8eaedc735fb085cc44533f623b1f1177897d9631076e1b664736f6c63430007000033
Deployed Bytecode
0x6080604052600436106101ba5760003560e01c806390883126116100ec578063b26bc4831161008a578063e2fdcc1711610064578063e2fdcc1714610632578063e3ac83da14610647578063ece531321461065c578063f09a40161461068f5761023d565b8063b26bc483146105cd578063cbdd69b5146105e2578063dd62ed3e146105f75761023d565b8063a457c2d7116100c6578063a457c2d71461053e578063a6f2ae3a14610577578063a9059cbb1461057f578063ad5c4648146105b85761023d565b806390883126146104e457806395d89b41146104f95780639773e95b1461050e5761023d565b8063313ce567116101595780634cf088d9116101335780634cf088d914610472578063564566a8146104875780636e48288f1461049c57806370a08231146104b15761023d565b8063313ce567146103d357806339509351146103fe5780633ccfe887146104375761023d565b8063095ea7b311610195578063095ea7b3146102fd5780630b6c3d901461034a57806318160ddd1461037b57806323b872dd146103905761023d565b8062f909031461024257806306fdde031461024c578063073077e6146102d65761023d565b3661023d57600a54600c5460065434909202916001600160a01b03161580156101e35750600082115b80156101f05750600b5481105b61022b5760405162461bcd60e51b81526004018080602001828103825260388152602001806123616038913960400191505060405180910390fd5b61023533836106ca565b3401600c5550005b600080fd5b61024a6107ba565b005b34801561025857600080fd5b50610261610b8d565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561029b578181015183820152602001610283565b50505050905090810190601f1680156102c85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102e257600080fd5b506102eb610c24565b60408051918252519081900360200190f35b34801561030957600080fd5b506103366004803603604081101561032057600080fd5b506001600160a01b038135169060200135610c2a565b604080519115158252519081900360200190f35b34801561035657600080fd5b5061035f610c48565b604080516001600160a01b039092168252519081900360200190f35b34801561038757600080fd5b506102eb610c5c565b34801561039c57600080fd5b50610336600480360360608110156103b357600080fd5b506001600160a01b03813581169160208101359091169060400135610c62565b3480156103df57600080fd5b506103e8610cea565b6040805160ff9092168252519081900360200190f35b34801561040a57600080fd5b506103366004803603604081101561042157600080fd5b506001600160a01b038135169060200135610cf3565b34801561044357600080fd5b5061024a6004803603604081101561045a57600080fd5b506001600160a01b0381358116916020013516610d41565b34801561047e57600080fd5b5061035f6112ee565b34801561049357600080fd5b506103366112fd565b3480156104a857600080fd5b506102eb611318565b3480156104bd57600080fd5b506102eb600480360360208110156104d457600080fd5b50356001600160a01b031661131e565b3480156104f057600080fd5b506102eb611339565b34801561050557600080fd5b50610261611358565b34801561051a57600080fd5b5061024a6004803603604081101561053157600080fd5b50803590602001356113b9565b34801561054a57600080fd5b506103366004803603604081101561056157600080fd5b506001600160a01b038135169060200135611529565b61024a611591565b34801561058b57600080fd5b50610336600480360360408110156105a257600080fd5b506001600160a01b038135169060200135611644565b3480156105c457600080fd5b5061035f611658565b3480156105d957600080fd5b5061035f61167c565b3480156105ee57600080fd5b506102eb61168b565b34801561060357600080fd5b506102eb6004803603604081101561061a57600080fd5b506001600160a01b0381358116916020013516611691565b34801561063e57600080fd5b5061035f6116bc565b34801561065357600080fd5b5061035f6116cb565b34801561066857600080fd5b5061024a6004803603602081101561067f57600080fd5b50356001600160a01b03166116da565b34801561069b57600080fd5b5061024a600480360360408110156106b257600080fd5b506001600160a01b0381358116916020013516611a49565b6001600160a01b038216610725576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61073160008383611cf7565b60025461073e9082611d5e565b6002556001600160a01b0382166000908152602081905260409020546107649082611d5e565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600e544210156107fb5760405162461bcd60e51b815260040180806020018281038252602b81526020018061246b602b913960400191505060405180910390fd5b336001600160a01b037f0000000000000000000000005fa14f91d577ceef66be18dc279e5289994c5ffc16148061083b575068056bc75e2d631000003410155b6108765760405162461bcd60e51b81526004018080602001828103825260298152602001806123bf6029913960400191505060405180910390fd5b6276a7004201600e55600d54600554604080516370a0823160e01b8152306004808301919091529151919093049260009261010090046001600160a01b0316916370a0823191602480820192602092909190829003018186803b1580156108dc57600080fd5b505afa1580156108f0573d6000803e3d6000fd5b505050506040513d602081101561090657600080fd5b5051905080821115610916578091505b81610922575050610b8b565b600560019054906101000a90046001600160a01b03166001600160a01b031663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156109ae57600080fd5b505af11580156109c2573d6000803e3d6000fd5b505050506040513d60208110156109d857600080fd5b505060408051629d473b60e21b815230600482015260248101849052600060448201819052606482018190526001600160a01b037f0000000000000000000000005fa14f91d577ceef66be18dc279e5289994c5ffc811660848401524260a4840152835191937f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d909116926302751cec9260c4808301939282900301818787803b158015610a8557600080fd5b505af1158015610a99573d6000803e3d6000fd5b505050506040513d6040811015610aaf57600080fd5b50519050610ade7f0000000000000000000000005fa14f91d577ceef66be18dc279e5289994c5ffc3083611db8565b600854610af69030906001600160a01b031683611f13565b600860009054906101000a90046001600160a01b03166001600160a01b03166309707ef76040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610b4657600080fd5b505af1158015610b5a573d6000803e3d6000fd5b50506040517f0593afacf22ee46ef2b32008806effce1a4fff5031b1788bc3665c6d0beb4657925060009150a15050505b565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c195780601f10610bee57610100808354040283529160200191610c19565b820191906000526020600020905b815481529060010190602001808311610bfc57829003601f168201915b505050505090505b90565b600b5481565b6000610c3e610c37611fff565b8484611f13565b5060015b92915050565b60055461010090046001600160a01b031681565b60025490565b6000610c6f848484611db8565b610cdf84610c7b611fff565b610cda8560405180606001604052806028815260200161241e602891396001600160a01b038a16600090815260016020526040812090610cb9611fff565b6001600160a01b031681526020810191909152604001600020549190612003565b611f13565b5060015b9392505050565b60055460ff1690565b6000610c3e610d00611fff565b84610cda8560016000610d11611fff565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611d5e565b336001600160a01b037f0000000000000000000000005fa14f91d577ceef66be18dc279e5289994c5ffc1614610dab576040805162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b604482015290519081900360640190fd5b6001600160a01b038216610dbe57600080fd5b6006546001600160a01b031615610e065760405162461bcd60e51b81526004018080602001828103825260368152602001806123e86036913960400191505060405180910390fd5b6001600160a01b038116610e1957600080fd5b6000600b819055600680546001600160a01b038086166001600160a01b0319928316179092556009805492851692909116919091179055610e58610c5c565b905060008111610e6757600080fd5b60007f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610ed657600080fd5b505afa158015610eea573d6000803e3d6000fd5b505050506040513d6020811015610f0057600080fd5b50519050600060028204600247040190506000600a8054830260090281610f2357fe5b6007549190049150610f42906001600160a01b03166002865b046106ca565b600954610f5a906001600160a01b0316600486610f3c565b610f69306004860483016106ca565b600854610f849030906001600160a01b031660048704611f13565b610faf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d83611f13565b600860009054906101000a90046001600160a01b03166001600160a01b03166309707ef76040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610fff57600080fd5b505af1158015611013573d6000803e3d6000fd5b50505050600760009054906101000a90046001600160a01b03166001600160a01b031663be9a65556040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561106757600080fd5b505af115801561107b573d6000803e3d6000fd5b50505050818310156110fe577f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db08484036040518263ffffffff1660e01b81526004016000604051808303818588803b1580156110e457600080fd5b505af11580156110f8573d6000803e3d6000fd5b50505050505b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561119557600080fd5b505af11580156111a9573d6000803e3d6000fd5b505050506040513d60208110156111bf57600080fd5b50506040805162e8e33760e81b815230600482018190526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28116602484015260448301859052606483018690526084830185905260a4830186905260c48301919091524260e483015291517f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9092169163e8e3370091610104808201926060929091908290030181600087803b15801561128057600080fd5b505af1158015611294573d6000803e3d6000fd5b505050506040513d60608110156112aa57600080fd5b50604090810151600d5562278d004201600e55516000907f3875226dfcbcc1f9d960fb57c08ec839f735bd6446aa9d0cec7503d960b1688e908290a2505050505050565b6008546001600160a01b031681565b600080600a541180156113135750600b54600c54105b905090565b600c5481565b6001600160a01b031660009081526020819052604090205490565b600e54600090428111611350576000915050610c21565b429003905090565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610c195780601f10610bee57610100808354040283529160200191610c19565b336001600160a01b037f0000000000000000000000005fa14f91d577ceef66be18dc279e5289994c5ffc1614611423576040805162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b604482015290519081900360640190fd5b6006546001600160a01b031615611481576040805162461bcd60e51b815260206004820152601d60248201527f4f7065726174696f6e73206861766520616c726561647920626567756e000000604482015290519081900360640190fd5b600a5415806114925750600a548211155b6114cd5760405162461bcd60e51b81526004018080602001828103825260238152602001806124966023913960400191505060405180910390fd5b60008211806114da575080155b6114e357600080fd5b6000600c55600b81905581156114f957600a8290555b6040516001907f3875226dfcbcc1f9d960fb57c08ec839f735bd6446aa9d0cec7503d960b1688e90600090a25050565b6000610c3e611536611fff565b84610cda856040518060600160405280602581526020016124dd6025913960016000611560611fff565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190612003565b60006115be7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2333061209a565b600a54600c5460065492935034840192918302916001600160a01b03161580156115e85750600082115b80156115f55750600b5481105b6116305760405162461bcd60e51b81526004018080602001828103825260388152602001806123616038913960400191505060405180910390fd5b61163a33836106ca565b909101600c555050565b6000610c3e611651611fff565b8484611db8565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6006546001600160a01b031681565b600a5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6007546001600160a01b031681565b6009546001600160a01b031681565b60006001600160a01b03821661184b5760004711611731576040805162461bcd60e51b815260206004820152600f60248201526e139bdd1a1a5b99c81d1bc81cd95b99608a1b604482015290519081900360640190fd5b61173b82476122b6565b90506000811161178c576040805162461bcd60e51b8152602060048201526017602482015276139bdd1a1a5b99c8185b1b1bddd959081d1bc81cd95b99604a1b604482015290519081900360640190fd5b6040516000906001600160a01b037f0000000000000000000000005fa14f91d577ceef66be18dc279e5289994c5ffc169083908381818185875af1925050503d80600081146117f7576040519150601f19603f3d011682016040523d82523d6000602084013e6117fc565b606091505b5050905080611844576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b5050611a46565b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561189157600080fd5b505afa1580156118a5573d6000803e3d6000fd5b505050506040513d60208110156118bb57600080fd5b5051905080611903576040805162461bcd60e51b815260206004820152600f60248201526e139bdd1a1a5b99c81d1bc81cd95b99608a1b604482015290519081900360640190fd5b61190d82826122b6565b90506000811161195e576040805162461bcd60e51b8152602060048201526017602482015276139bdd1a1a5b99c8185b1b1bddd959081d1bc81cd95b99604a1b604482015290519081900360640190fd5b816001600160a01b031663a9059cbb7f0000000000000000000000005fa14f91d577ceef66be18dc279e5289994c5ffc836040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156119d557600080fd5b505af11580156119e9573d6000803e3d6000fd5b505050506040513d60208110156119ff57600080fd5b5051611a44576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b505b50565b336001600160a01b037f0000000000000000000000005fa14f91d577ceef66be18dc279e5289994c5ffc1614611ab3576040805162461bcd60e51b815260206004820152600a6024820152694f776e6572206f6e6c7960b01b604482015290519081900360640190fd5b6001600160a01b038216611ac657600080fd5b6001600160a01b038116611ad957600080fd5b60055461010090046001600160a01b0316611be5577f0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f6001600160a01b031663c9c653967f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2306040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b0316815260200192505050602060405180830381600087803b158015611b8e57600080fd5b505af1158015611ba2573d6000803e3d6000fd5b505050506040513d6020811015611bb857600080fd5b5051600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055611cc9565b47158015611c825750604080516370a0823160e01b815230600482015290516001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216916370a08231916024808301926020929190829003018186803b158015611c5457600080fd5b505afa158015611c68573d6000803e3d6000fd5b505050506040513d6020811015611c7e57600080fd5b5051155b611cc9576040805162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b604482015290519081900360640190fd5b600780546001600160a01b039384166001600160a01b03199182161790915560088054929093169116179055565b6001600160a01b0383161580611d1757506006546001600160a01b031615155b611d525760405162461bcd60e51b815260040180806020018281038252602b815260200180612314602b913960400191505060405180910390fd5b611d598383835b505050565b600082820183811015610ce3576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038316611dfd5760405162461bcd60e51b81526004018080602001828103825260258152602001806124466025913960400191505060405180910390fd5b6001600160a01b038216611e425760405162461bcd60e51b81526004018080602001828103825260238152602001806122f16023913960400191505060405180910390fd5b611e4d838383611cf7565b611e8a81604051806060016040528060268152602001612399602691396001600160a01b0386166000908152602081905260409020549190612003565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611eb99082611d5e565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b038316611f585760405162461bcd60e51b81526004018080602001828103825260248152602001806124b96024913960400191505060405180910390fd5b6001600160a01b038216611f9d5760405162461bcd60e51b815260040180806020018281038252602281526020018061233f6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b3390565b600081848411156120925760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561205757818101518382015260200161203f565b50505050905090810190601f1680156120845780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600080846001600160a01b03166370a08231856040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156120ea57600080fd5b505afa1580156120fe573d6000803e3d6000fd5b505050506040513d602081101561211457600080fd5b5051905080612127576000915050610ce3565b6000856001600160a01b031663dd62ed3e86866040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b15801561218757600080fd5b505afa15801561219b573d6000803e3d6000fd5b505050506040513d60208110156121b157600080fd5b505190508181116121c257806121c4565b815b9250826121d657600092505050610ce3565b856001600160a01b03166323b872dd8686866040518463ffffffff1660e01b815260040180846001600160a01b03168152602001836001600160a01b031681526020018281526020019350505050602060405180830381600087803b15801561223e57600080fd5b505af1158015612252573d6000803e3d6000fd5b505050506040513d602081101561226857600080fd5b50516122ad576040805162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015290519081900360640190fd5b50509392505050565b60065481906001600160a01b031615806122e257506005546001600160a01b0384811661010090920416145b15610c42575060009291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737354686520636f6e747261637420686173206e6f7420796574206265636f6d65206f7065726174696f6e616c45524332303a20617070726f766520746f20746865207a65726f2061646472657373546f6b656e7320617265206e6f7420666f722073616c65206f7220796f7520646964206e6f742073656e6420616e79204554482f5745544845524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365546869732063616e206f6e6c792062652063616c6c656420627920706179696e6720313030204554484f7065726174696f6e732063616e6e6f742062652073746f7070656420616674657220686176696e67206265656e207374617274656445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734974277320746f6f206561726c7920746f206372656174652061206c6971756964697479206372697369735468652070726963652063616e206f6e6c792062652070756d7065642068696768657245524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220525ef51f08395eefc8eaedc735fb085cc44533f623b1f1177897d9631076e1b664736f6c63430007000033
Deployed Bytecode Sourcemap
52298:336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49100:12;;49150:7;;49185:12;;49115:9;49100:24;;;;-1:-1:-1;;;;;49185:12:0;49177:35;:49;;;;;49225:1;49216:6;:10;49177:49;:70;;;;;49237:10;;49230:4;:17;49177:70;49168:140;;;;-1:-1:-1;;;49168:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49319:25;49325:10;49337:6;49319:5;:25::i;:::-;49372:9;49365:16;49355:7;:26;-1:-1:-1;52298:336:0;;;;;50588:1123;;;:::i;:::-;;35312:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44747:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;37418:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37418:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44462:39;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;44462:39:0;;;;;;;;;;;;;;36387:100;;;;;;;;;;;;;:::i;38061:321::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38061:321:0;;;;;;;;;;;;;;;;;:::i;36239:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38791:218;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;38791:218:0;;;;;;;;:::i;46953:2060::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;46953:2060:0;;;;;;;;;;:::i;44610:39::-;;;;;;;;;;;;;:::i;46774:167::-;;;;;;;;;;;;;:::i;44788:31::-;;;;;;;;;;;;;:::i;36550:119::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36550:119:0;-1:-1:-1;;;;;36550:119:0;;:::i;50230:267::-;;;;;;;;;;;;;:::i;35514:87::-;;;;;;;;;;;;;:::i;46222:544::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46222:544:0;;;;;;;:::i;39512:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39512:269:0;;;;;;;;:::i;49397:530::-;;;:::i;36882:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36882:175:0;;;;;;;;:::i;44411:38::-;;;;;;;;;;;;;:::i;44510:49::-;;;;;;;;;;;;;:::i;44704:36::-;;;;;;;;;;;;;:::i;37120:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37120:151:0;;;;;;;;;;:::i;44566:37::-;;;;;;;;;;;;;:::i;44656:39::-;;;;;;;;;;;;;:::i;4988:793::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4988:793:0;-1:-1:-1;;;;;4988:793:0;;:::i;45583:631::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45583:631:0;;;;;;;;;;:::i;41091:378::-;-1:-1:-1;;;;;41175:21:0;;41167:65;;;;;-1:-1:-1;;;41167:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;41245:49;41274:1;41278:7;41287:6;41245:20;:49::i;:::-;41322:12;;:24;;41339:6;41322:16;:24::i;:::-;41307:12;:39;-1:-1:-1;;;;;41378:18:0;;:9;:18;;;;;;;;;;;:30;;41401:6;41378:22;:30::i;:::-;-1:-1:-1;;;;;41357:18:0;;:9;:18;;;;;;;;;;;:51;;;;41424:37;;;;;;;41357:18;;:9;;41424:37;;;;;;;;;;41091:378;;:::o;50588:1123::-;50718:22;;50699:15;:41;;50690:98;;;;-1:-1:-1;;;50690:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50808:10;-1:-1:-1;;;;;50822:5:0;50808:19;;;:45;;;50844:9;50831;:22;;50808:45;50799:100;;;;-1:-1:-1;;;50799:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50955:17;50937:15;:35;50912:22;:60;51030:22;;51085:17;;:42;;;-1:-1:-1;;;51085:42:0;;51121:4;51055:1;51085:42;;;;;;;;;51030:26;;;;;-1:-1:-1;;51085:17:0;;;-1:-1:-1;;;;;51085:17:0;;:27;;:42;;;;;;;;;;;;;;;:17;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51085:42:0;;-1:-1:-1;51142:19:0;;;51138:49;;;51177:7;51165:19;;51138:49;51201:14;51197:31;;51219:7;;;;51197:31;51240:17;;;;;;;;;-1:-1:-1;;;;;51240:17:0;-1:-1:-1;;;;;51240:25:0;;51274:15;51292:9;51240:62;;;;;;;;;;;;;-1:-1:-1;;;;;51240:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51338:169:0;;;-1:-1:-1;;;51338:169:0;;51395:4;51338:169;;;;;;;;;;-1:-1:-1;51338:169:0;;;;;;;;;;;;-1:-1:-1;;;;;51471:5:0;51338:169;;;;;;51491:15;51338:169;;;;;;-1:-1:-1;;51338:15:0;:34;;;;;;:169;;;;;;;;;;;-1:-1:-1;51338:34:0;:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51338:169:0;;-1:-1:-1;51520:44:0;51530:5;51545:4;51338:169;51520:9;:44::i;:::-;51607:7;;51575:54;;51592:4;;-1:-1:-1;;;;;51607:7:0;51617:11;51575:8;:54::i;:::-;51640:7;;;;;;;;;-1:-1:-1;;;;;51640:7:0;-1:-1:-1;;;;;51640:26:0;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51686:17:0;;;;-1:-1:-1;51686:17:0;;-1:-1:-1;51686:17:0;50588:1123;;;;:::o;35312:83::-;35382:5;35375:12;;;;;;;;-1:-1:-1;;35375:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35349:13;;35375:12;;35382:5;;35375:12;;35382:5;35375:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35312:83;;:::o;44747:34::-;;;;:::o;37418:169::-;37501:4;37518:39;37527:12;:10;:12::i;:::-;37541:7;37550:6;37518:8;:39::i;:::-;-1:-1:-1;37575:4:0;37418:169;;;;;:::o;44462:39::-;;;;;;-1:-1:-1;;;;;44462:39:0;;:::o;36387:100::-;36467:12;;36387:100;:::o;38061:321::-;38167:4;38184:36;38194:6;38202:9;38213:6;38184:9;:36::i;:::-;38231:121;38240:6;38248:12;:10;:12::i;:::-;38262:89;38300:6;38262:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38262:19:0;;;;;;:11;:19;;;;;;38282:12;:10;:12::i;:::-;-1:-1:-1;;;;;38262:33:0;;;;;;;;;;;;-1:-1:-1;38262:33:0;;;:89;:37;:89::i;:::-;38231:8;:121::i;:::-;-1:-1:-1;38370:4:0;38061:321;;;;;;:::o;36239:83::-;36305:9;;;;36239:83;:::o;38791:218::-;38879:4;38896:83;38905:12;:10;:12::i;:::-;38919:7;38928:50;38967:10;38928:11;:25;38940:12;:10;:12::i;:::-;-1:-1:-1;;;;;38928:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;38928:25:0;;;:34;;;;;;;;;;;:38;:50::i;46953:2060::-;45535:10;-1:-1:-1;;;;;45549:5:0;45535:19;;45527:42;;;;;-1:-1:-1;;;45527:42:0;;;;;;;;;;;;-1:-1:-1;;;45527:42:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47129:36:0;::::1;47120:46;;;::::0;::::1;;47194:12;::::0;-1:-1:-1;;;;;47194:12:0::1;47186:35:::0;47177:103:::1;;;;-1:-1:-1::0;;;47177:103:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;47300:31:0;::::1;47291:41;;;::::0;::::1;;47374:1;47361:10;:14:::0;;;47386:12:::1;:28:::0;;-1:-1:-1;;;;;47386:28:0;;::::1;-1:-1:-1::0;;;;;;47386:28:0;;::::1;;::::0;;;47425:7:::1;:18:::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;47487:13:::1;:11;:13::i;:::-;47472:28;;47572:1;47565:4;:8;47556:18;;;::::0;::::1;;47587:19;47616:4;-1:-1:-1::0;;;;;47609:22:0::1;;47640:4;47609:37;;;;;;;;;;;;;-1:-1:-1::0;;;;;47609:37:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;47609:37:0;;-1:-1:-1;47659:25:0::1;47729:1;47609:37:::0;47715:15:::1;47711:1;47687:21;:25;:43;47659:71;;47741:25;47808:2;47789:12:::0;::::1;47769:17;:32;47804:1;47769:36;:41;;;;;47881:6;::::0;47769:41;;::::1;::::0;-1:-1:-1;47867:32:0::1;::::0;-1:-1:-1;;;;;47881:6:0::1;47897:1;47890:4:::0;:8:::1;;47867:5;:32::i;:::-;47951:7;::::0;47937:33:::1;::::0;-1:-1:-1;;;;;47951:7:0::1;47968:1;47961:4:::0;:8:::1;::::0;47937:33:::1;48013:50;48027:4;48061:1;48054:4:::0;:8:::1;48034:17;:28;48013:5;:50::i;:::-;48144:7;::::0;48112:51:::1;::::0;48129:4:::1;::::0;-1:-1:-1;;;;;48144:7:0::1;48161:1;48154:4:::0;:8:::1;48112;:51::i;:::-;48181:68;48198:4;48213:15;48231:17;48181:8;:68::i;:::-;48262:7;;;;;;;;;-1:-1:-1::0;;;;;48262:7:0::1;-1:-1:-1::0;;;;;48262:26:0::1;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48301:6;;;;;;;;;-1:-1:-1::0;;;;;48301:6:0::1;-1:-1:-1::0;;;;;48301:12:0::1;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48346:17;48332:11;:31;48328:127;;;48386:4;-1:-1:-1::0;;;;;48380:19:0::1;;48428:11;48408:17;:31;48380:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;48328:127;48474:4;-1:-1:-1::0;;;;;48467:20:0::1;;48496:15;48514:17;48467:65;;;;;;;;;;;;;-1:-1:-1::0;;;;;48467:65:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;48574:262:0::1;::::0;;-1:-1:-1;;;48574:262:0;;48625:4:::1;48574:262;::::0;::::1;::::0;;;-1:-1:-1;;;;;48645:4:0::1;48574:262:::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48820:15:::1;48574:262:::0;;;;;;:15:::1;:28:::0;;::::1;::::0;::::1;::::0;:262;;;;;::::1;::::0;;;;;;;;;-1:-1:-1;48574:28:0;:262;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48574:262:0;;;;;48548:22:::1;48545:291:::0;48892:17:::1;48874:15;:35;48849:22;:60:::0;48994:11;48548:22:::1;::::0;48994:11:::1;::::0;48548:22;;48994:11:::1;45571:1;;;;46953:2060:::0;;:::o;44610:39::-;;;-1:-1:-1;;;;;44610:39:0;;:::o;46774:167::-;46864:4;46908:1;46893:12;;:16;:40;;;;;46923:10;;46913:7;;:20;46893:40;46886:47;;46774:167;:::o;44788:31::-;;;;:::o;36550:119::-;-1:-1:-1;;;;;36643:18:0;36616:7;36643:18;;;;;;;;;;;;36550:119::o;50230:267::-;50377:22;;50338:7;;50421:15;50414:22;;50410:41;;50447:1;50440:8;;;;;50410:41;50474:15;50468:21;;;-1:-1:-1;50230:267:0;:::o;35514:87::-;35586:7;35579:14;;;;;;;;-1:-1:-1;;35579:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35553:13;;35579:14;;35586:7;;35579:14;;35586:7;35579:14;;;;;;;;;;;;;;;;;;;;;;;;46222:544;45535:10;-1:-1:-1;;;;;45549:5:0;45535:19;;45527:42;;;;;-1:-1:-1;;;45527:42:0;;;;;;;;;;;;-1:-1:-1;;;45527:42:0;;;;;;;;;;;;;;;46380:12:::1;::::0;-1:-1:-1;;;;;46380:12:0::1;46372:35:::0;46363:78:::1;;;::::0;;-1:-1:-1;;;46363:78:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;46461:12;::::0;:17;;:50:::1;;;46499:12;;46482:13;:29;;46461:50;46452:99;;;;-1:-1:-1::0;;;46452:99:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46587:1;46571:13;:17;:37;;;-1:-1:-1::0;46592:16:0;;46571:37:::1;46562:47;;;::::0;::::1;;46630:1;46620:7;:11:::0;46642:10:::1;:24:::0;;;46681:17;;46677:56:::1;;46702:12;:28:::0;;;46677:56:::1;46748:10;::::0;46753:4:::1;::::0;46748:10:::1;::::0;;;::::1;46222:544:::0;;:::o;39512:269::-;39605:4;39622:129;39631:12;:10;:12::i;:::-;39645:7;39654:96;39693:15;39654:96;;;;;;;;;;;;;;;;;:11;:25;39666:12;:10;:12::i;:::-;-1:-1:-1;;;;;39654:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;39654:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;49397:530::-;49486:18;49507:44;49519:4;49525:10;49545:4;49507:11;:44::i;:::-;49634:12;;49686:7;;49721:12;;49486:65;;-1:-1:-1;49597:9:0;49584:22;;;49634:26;;;;-1:-1:-1;;;;;49721:12:0;49713:35;:49;;;;;49761:1;49752:6;:10;49713:49;:70;;;;;49773:10;;49766:4;:17;49713:70;49704:140;;;;-1:-1:-1;;;49704:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49855:25;49861:10;49873:6;49855:5;:25::i;:::-;49901:18;;;49891:7;:28;-1:-1:-1;;49397:530:0:o;36882:175::-;36968:4;36985:42;36995:12;:10;:12::i;:::-;37009:9;37020:6;36985:9;:42::i;44411:38::-;;;:::o;44510:49::-;;;-1:-1:-1;;;;;44510:49:0;;:::o;44704:36::-;;;;:::o;37120:151::-;-1:-1:-1;;;;;37236:18:0;;;37209:7;37236:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;37120:151::o;44566:37::-;;;-1:-1:-1;;;;;44566:37:0;;:::o;44656:39::-;;;-1:-1:-1;;;;;44656:39:0;;:::o;4988:793::-;5068:14;-1:-1:-1;;;;;5097:19:0;;5093:385;;5175:1;5151:21;:25;5142:54;;;;;-1:-1:-1;;;5142:54:0;;;;;;;;;;;;-1:-1:-1;;;5142:54:0;;;;;;;;;;;;;;;5220:42;5233:5;5240:21;5220:12;:42::i;:::-;5211:51;;5295:1;5286:6;:10;5277:47;;;;;-1:-1:-1;;;5277:47:0;;;;;;;;;;;;-1:-1:-1;;;5277:47:0;;;;;;;;;;;;;;;5357:37;;5340:12;;-1:-1:-1;;;;;5357:11:0;:16;;5382:6;;5340:12;5357:37;5340:12;5357:37;5382:6;5357:16;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5339:55;;;5418:7;5409:36;;;;;-1:-1:-1;;;5409:36:0;;;;;;;;;;;;-1:-1:-1;;;5409:36:0;;;;;;;;;;;;;;;5460:7;;;;5093:385;5497:38;;;-1:-1:-1;;;5497:38:0;;5529:4;5497:38;;;;;;-1:-1:-1;;;;;5497:23:0;;;;;:38;;;;;;;;;;;;;;:23;:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5497:38:0;;-1:-1:-1;5555:10:0;5546:39;;;;;-1:-1:-1;;;5546:39:0;;;;;;;;;;;;-1:-1:-1;;;5546:39:0;;;;;;;;;;;;;;;5605:27;5618:5;5625:6;5605:12;:27::i;:::-;5596:36;;5661:1;5652:6;:10;5643:47;;;;;-1:-1:-1;;;5643:47:0;;;;;;;;;;;;-1:-1:-1;;;5643:47:0;;;;;;;;;;;;;;;5717:5;-1:-1:-1;;;;;5710:22:0;;5733:11;5746:6;5710:43;;;;;;;;;;;;;-1:-1:-1;;;;;5710:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5710:43:0;5701:72;;;;;-1:-1:-1;;;5701:72:0;;;;;;;;;;;;-1:-1:-1;;;5701:72:0;;;;;;;;;;;;;;;4988:793;;;:::o;45583:631::-;45535:10;-1:-1:-1;;;;;45549:5:0;45535:19;;45527:42;;;;;-1:-1:-1;;;45527:42:0;;;;;;;;;;;;-1:-1:-1;;;45527:42:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45753:30:0;::::1;45744:40;;;::::0;::::1;;-1:-1:-1::0;;;;;45804:31:0;::::1;45795:41;;;::::0;::::1;;45859:17;::::0;::::1;::::0;::::1;-1:-1:-1::0;;;;;45859:17:0::1;45847:304;;45943:16;-1:-1:-1::0;;;;;45943:27:0::1;;45971:4;45985;45943:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;45943:48:0::1;;;;;;-1:-1:-1::0;;;;;45943:48:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;45943:48:0;45908:17:::1;:84:::0;;-1:-1:-1;;;;;45908:84:0;;::::1;;;-1:-1:-1::0;;;;;;45908:84:0;;::::1;::::0;;;::::1;::::0;;45847:304:::1;;;46043:21;:26:::0;:72;::::1;;;-1:-1:-1::0;46073:37:0::1;::::0;;-1:-1:-1;;;46073:37:0;;46104:4:::1;46073:37;::::0;::::1;::::0;;;-1:-1:-1;;;;;46080:4:0::1;46073:22;::::0;::::1;::::0;:37;;;;;::::1;::::0;;;;;;;;:22;:37;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;46073:37:0;:42;46043:72:::1;46034:105;;;::::0;;-1:-1:-1;;;46034:105:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;46034:105:0;;;;;;;;;;;;;::::1;;46161:6;:16:::0;;-1:-1:-1;;;;;46161:16:0;;::::1;-1:-1:-1::0;;;;;;46161:16:0;;::::1;;::::0;;;46188:7:::1;:18:::0;;;;;::::1;::::0;::::1;;::::0;;45583:631::o;49935:287::-;-1:-1:-1;;;;;50054:18:0;;;;:57;;-1:-1:-1;50084:12:0;;-1:-1:-1;;;;;50084:12:0;50076:35;;50054:57;50045:114;;;;-1:-1:-1;;;50045:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50170:44;50197:4;50203:2;50207:6;50170:44;49935:287;;;:::o;27754:181::-;27812:7;27844:5;;;27868:6;;;;27860:46;;;;;-1:-1:-1;;;27860:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;40271:539;-1:-1:-1;;;;;40377:20:0;;40369:70;;;;-1:-1:-1;;;40369:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40458:23:0;;40450:71;;;;-1:-1:-1;;;40450:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40534:47;40555:6;40563:9;40574:6;40534:20;:47::i;:::-;40614:71;40636:6;40614:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40614:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;40594:17:0;;;:9;:17;;;;;;;;;;;:91;;;;40719:20;;;;;;;:32;;40744:6;40719:24;:32::i;:::-;-1:-1:-1;;;;;40696:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;40767:35;;;;;;;40696:20;;40767:35;;;;;;;;;;;;;40271:539;;;:::o;42659:346::-;-1:-1:-1;;;;;42761:19:0;;42753:68;;;;-1:-1:-1;;;42753:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42840:21:0;;42832:68;;;;-1:-1:-1;;;42832:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42913:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;42965:32;;;;;;;;;;;;;;;;;42659:346;;;:::o;32813:106::-;32901:10;32813:106;:::o;28657:192::-;28743:7;28779:12;28771:6;;;;28763:29;;;;-1:-1:-1;;;28763:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;28815:5:0;;;28657:192::o;2960:514::-;3059:25;3102:15;3127:5;-1:-1:-1;;;;;3120:23:0;;3144:4;3120:29;;;;;;;;;;;;;-1:-1:-1;;;;;3120:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3120:29:0;;-1:-1:-1;3164:12:0;3160:31;;3187:1;3180:8;;;;;3160:31;3201:15;3226:5;-1:-1:-1;;;;;3219:23:0;;3243:4;3249:2;3219:33;;;;;;;;;;;;;-1:-1:-1;;;;;3219:33:0;;;;;;-1:-1:-1;;;;;3219:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3219:33:0;;-1:-1:-1;3283:17:0;;;:37;;3313:7;3283:37;;;3303:7;3283:37;3263:57;-1:-1:-1;3335:22:0;3331:41;;3368:1;3361:8;;;;;;3331:41;3398:5;-1:-1:-1;;;;;3391:26:0;;3418:4;3424:2;3428:17;3391:55;;;;;;;;;;;;;-1:-1:-1;;;;;3391:55:0;;;;;;-1:-1:-1;;;;;3391:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3391:55:0;3382:84;;;;;-1:-1:-1;;;3382:84:0;;;;;;;;;;;;-1:-1:-1;;;3382:84:0;;;;;;;;;;;;;;;2960:514;;;;;;;:::o;51719:520::-;51954:12;;51912:9;;-1:-1:-1;;;;;51954:12:0;51946:35;;:189;;-1:-1:-1;52117:17:0;;-1:-1:-1;;;;;52100:35:0;;;52117:17;;;;;52100:35;51946:189;51942:290;;;-1:-1:-1;52219:1:0;51719:520;;;;:::o
Swarm Source
ipfs://525ef51f08395eefc8eaedc735fb085cc44533f623b1f1177897d9631076e1b6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.