More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 11,775 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 13365210 | 1220 days ago | IN | 0 ETH | 0.00966064 | ||||
Withdraw | 13050588 | 1269 days ago | IN | 0 ETH | 0.00692488 | ||||
Claim | 12988397 | 1279 days ago | IN | 0 ETH | 0.0040518 | ||||
Withdraw | 12988386 | 1279 days ago | IN | 0 ETH | 0.00496796 | ||||
Claim | 12988382 | 1279 days ago | IN | 0 ETH | 0.00422986 | ||||
Claim | 12958212 | 1283 days ago | IN | 0 ETH | 0.00270577 | ||||
Withdraw | 12958202 | 1283 days ago | IN | 0 ETH | 0.00376712 | ||||
Claim | 12864289 | 1298 days ago | IN | 0 ETH | 0.00356993 | ||||
Withdraw | 12864285 | 1298 days ago | IN | 0 ETH | 0.0040693 | ||||
Claim | 12716730 | 1321 days ago | IN | 0 ETH | 0.00108231 | ||||
Claim | 12716333 | 1321 days ago | IN | 0 ETH | 0.00082017 | ||||
Claim | 12706390 | 1323 days ago | IN | 0 ETH | 0.00183972 | ||||
Withdraw | 12706385 | 1323 days ago | IN | 0 ETH | 0.00285234 | ||||
Claim | 12639846 | 1333 days ago | IN | 0 ETH | 0.00227285 | ||||
Claim | 12628150 | 1335 days ago | IN | 0 ETH | 0.00184935 | ||||
Withdraw | 12612526 | 1337 days ago | IN | 0 ETH | 0.00142375 | ||||
Claim | 12587949 | 1341 days ago | IN | 0 ETH | 0.00230249 | ||||
Stake | 12566211 | 1345 days ago | IN | 0 ETH | 0.00192678 | ||||
Stake | 12566211 | 1345 days ago | IN | 0 ETH | 0.00243914 | ||||
Claim | 12529206 | 1350 days ago | IN | 0 ETH | 0.00155013 | ||||
Claim | 12519845 | 1352 days ago | IN | 0 ETH | 0.00255066 | ||||
Claim | 12513621 | 1353 days ago | IN | 0 ETH | 0.00455475 | ||||
Withdraw | 12513607 | 1353 days ago | IN | 0 ETH | 0.00605033 | ||||
Claim | 12513596 | 1353 days ago | IN | 0 ETH | 0.00615693 | ||||
Claim | 12513508 | 1353 days ago | IN | 0 ETH | 0.00615684 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
LPToDOKI
Compiler Version
v0.7.2+commit.51b20bc0
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-10-10 */ pragma solidity ^0.7.0; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev 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) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @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"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } } library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract ERC20 is Context, IERC20 { using SafeMath for uint256; 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 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 { } } contract DokiCoinCore is ERC20("DokiDokiFinance", "DOKI") { using SafeMath for uint256; address internal _taxer; address internal _taxDestination; uint internal _taxRate = 0; mapping (address => bool) internal _taxWhitelist; function transfer(address recipient, uint256 amount) public override returns (bool) { uint256 taxAmount = amount.mul(_taxRate).div(100); if (_taxWhitelist[msg.sender] == true) { taxAmount = 0; } uint256 transferAmount = amount.sub(taxAmount); require(balanceOf(msg.sender) >= transferAmount, "insufficient balance."); super.transfer(recipient, amount); if (taxAmount != 0) { super.transfer(_taxDestination, taxAmount); } return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { uint256 taxAmount = amount.mul(_taxRate).div(100); if (_taxWhitelist[sender] == true) { taxAmount = 0; } uint256 transferAmount = amount.sub(taxAmount); require(balanceOf(sender) >= transferAmount, "insufficient balance."); super.transferFrom(sender, recipient, amount); if (taxAmount != 0) { super.transferFrom(sender, _taxDestination, taxAmount); } return true; } } contract DokiCoin is DokiCoinCore, Ownable { mapping (address => bool) public minters; constructor() { _taxer = owner(); _taxDestination = owner(); } function mint(address to, uint amount) public onlyMinter { _mint(to, amount); } function burn(uint amount) public { require(amount > 0); require(balanceOf(msg.sender) >= amount); _burn(msg.sender, amount); } function addMinter(address account) public onlyOwner { minters[account] = true; } function removeMinter(address account) public onlyOwner { minters[account] = false; } modifier onlyMinter() { require(minters[msg.sender], "Restricted to minters."); _; } modifier onlyTaxer() { require(msg.sender == _taxer, "Only for taxer."); _; } function setTaxer(address account) public onlyTaxer { _taxer = account; } function setTaxRate(uint256 rate) public onlyTaxer { _taxRate = rate; } function setTaxDestination(address account) public onlyTaxer { _taxDestination = account; } function addToWhitelist(address account) public onlyTaxer { _taxWhitelist[account] = true; } function removeFromWhitelist(address account) public onlyTaxer { _taxWhitelist[account] = false; } function taxer() public view returns(address) { return _taxer; } function taxDestination() public view returns(address) { return _taxDestination; } function taxRate() public view returns(uint256) { return _taxRate; } function isInWhitelist(address account) public view returns(bool) { return _taxWhitelist[account]; } } contract LPToDOKI is Ownable { using SafeMath for uint256; using SafeERC20 for DokiCoin; using SafeERC20 for IERC20; using Address for address; DokiCoin private doki; IERC20 private lpToken; //LP token balances mapping(address => uint256) private _lpBalances; uint private _lpTotalSupply; // halving period time uint256 public constant DURATION = 2 weeks; // initial amount of doki uint256 public initReward = 13500 * 1e18; bool public haveStarted = false; // next time of halving uint256 public halvingTime = 0; uint256 public lastUpdateTime = 0; // distribution of per second uint256 public rewardRate = 0; uint256 public rewardPerLPToken = 0; mapping(address => uint256) private rewards; mapping(address => uint256) private userRewardPerTokenPaid; // Something about dev. address public devAddr; uint256 public devDistributeRate = 0; uint256 public lastDistributeTime = 0; uint256 public devFinishTime = 0; uint256 public devFundAmount = 1820 * 1e18; uint256 public devDistributeDuration = 180 days; event Stake(address indexed from, uint amount); event Withdraw(address indexed to, uint amount); event Claim(address indexed to, uint amount); event Halving(uint amount); event Start(uint amount); constructor(address _doki, address _lpToken) { doki = DokiCoin(_doki); lpToken = IERC20(_lpToken); devAddr = owner(); } function totalSupply() public view returns(uint256) { return _lpTotalSupply; } function balanceOf(address account) public view returns(uint256) { return _lpBalances[account]; } function stake(uint amount) public shouldStarted { updateRewards(msg.sender); checkHalving(); require(!address(msg.sender).isContract(), "Please use your individual account."); lpToken.safeTransferFrom(msg.sender, address(this), amount); _lpTotalSupply = _lpTotalSupply.add(amount); _lpBalances[msg.sender] = _lpBalances[msg.sender].add(amount); distributeDevFund(); emit Stake(msg.sender, amount); } function withdraw(uint amount) public shouldStarted { updateRewards(msg.sender); checkHalving(); require(amount <= _lpBalances[msg.sender] && _lpBalances[msg.sender] > 0, "Bad withdraw."); lpToken.safeTransfer(msg.sender, amount); _lpTotalSupply = _lpTotalSupply.sub(amount); _lpBalances[msg.sender] = _lpBalances[msg.sender].sub(amount); distributeDevFund(); emit Withdraw(msg.sender, amount); } function claim(uint amount) public shouldStarted { updateRewards(msg.sender); checkHalving(); require(amount <= rewards[msg.sender] && rewards[msg.sender] > 0, "Bad claim."); rewards[msg.sender] = rewards[msg.sender].sub(amount); doki.safeTransfer(msg.sender, amount); distributeDevFund(); emit Claim(msg.sender, amount); } function checkHalving() internal { if (block.timestamp >= halvingTime) { initReward = initReward.mul(50).div(100); doki.mint(address(this), initReward); rewardRate = initReward.div(DURATION); halvingTime = halvingTime.add(DURATION); updateRewards(msg.sender); emit Halving(initReward); } } modifier shouldStarted() { require(haveStarted == true, "Have not started."); _; } function getRewardsAmount(address account) public view returns(uint256) { return balanceOf(account).mul(rewardPerToken().sub(userRewardPerTokenPaid[account])) .div(1e18) .add(rewards[account]); } function rewardPerToken() public view returns (uint256) { if (_lpTotalSupply == 0) { return rewardPerLPToken; } return rewardPerLPToken .add(Math.min(block.timestamp, halvingTime) .sub(lastUpdateTime) .mul(rewardRate) .mul(1e18) .div(_lpTotalSupply) ); } function updateRewards(address account) internal { rewardPerLPToken = rewardPerToken(); lastUpdateTime = lastRewardTime(); if (account != address(0)) { rewards[account] = getRewardsAmount(account); userRewardPerTokenPaid[account] = rewardPerLPToken; } } function lastRewardTime() public view returns (uint256) { return Math.min(block.timestamp, halvingTime); } function startFarming() external onlyOwner { updateRewards(address(0)); rewardRate = initReward.div(DURATION); uint256 mintAmount = initReward.add(devFundAmount); doki.mint(address(this), mintAmount); devDistributeRate = devFundAmount.div(devDistributeDuration); devFinishTime = block.timestamp.add(devDistributeDuration); lastUpdateTime = block.timestamp; lastDistributeTime = block.timestamp; halvingTime = block.timestamp.add(DURATION); haveStarted = true; emit Start(mintAmount); } function transferDevAddr(address newAddr) public onlyDev { require(newAddr != address(0), "zero addr"); devAddr = newAddr; } function distributeDevFund() internal { uint256 nowTime = Math.min(block.timestamp, devFinishTime); uint256 fundAmount = nowTime.sub(lastDistributeTime).mul(devDistributeRate); doki.safeTransfer(devAddr, fundAmount); lastDistributeTime = nowTime; } modifier onlyDev() { require(msg.sender == devAddr, "This is only for dev."); _; } function lpTokenAddress() view public returns(address) { return address(lpToken); } function dokiAddress() view public returns(address) { return address(doki); } function testMint() public onlyOwner { doki.mint(address(this), 1); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_doki","type":"address"},{"internalType":"address","name":"_lpToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Halving","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Start","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devDistributeDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devDistributeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFinishTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dokiAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getRewardsAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"halvingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"haveStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastDistributeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerLPToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startFarming","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"testMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddr","type":"address"}],"name":"transferDevAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526902dbd622a9ef3d7000006005556000600660006101000a81548160ff0219169083151502179055506000600755600060085560006009556000600a556000600e556000600f5560006010556862a992e53a0af0000060115562ed4e006012553480156200007157600080fd5b506040516200291538038062002915833981810160405260408110156200009757600080fd5b8101908080519060200190929190805190602001909291905050506000620000c46200023c60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001f46200024460201b60201c565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200026d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b612698806200027d6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638366a20511610104578063c6570d85116100a2578063dbe9345111610071578063dbe934511461055a578063f2fde38b146105b2578063f5ae497a146105f6578063fb0e487a1461062a576101cf565b8063c6570d85146104cc578063c8f33c91146104ea578063cd3daf9d14610508578063da09c72c14610526576101cf565b80639642ddaf116100de5780639642ddaf1461046c5780639bfffad714610476578063a694fc3a14610494578063afbcfea1146104c2576101cf565b80638366a205146103fc5780638da5cb5b1461041a5780639231cf741461044e576101cf565b80633cf6bcfe1161017157806370a082311161014b57806370a082311461035e578063715018a6146103b65780637b0a47ee146103c05780637d8033f5146103de576101cf565b80633cf6bcfe146102de5780633ef0cc7b146102fc5780634b438c3414610340576101cf565b806322eb9363116101ad57806322eb9363146102445780632e1a7d4d1461026257806335f50ade14610290578063379607f5146102b0576101cf565b806318160ddd146101d45780631be05289146101f25780631de656a514610210575b600080fd5b6101dc610648565b6040518082815260200191505060405180910390f35b6101fa610652565b6040518082815260200191505060405180910390f35b610218610659565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61024c610683565b6040518082815260200191505060405180910390f35b61028e6004803603602081101561027857600080fd5b8101908080359060200190929190505050610689565b005b610298610979565b60405180821515815260200191505060405180910390f35b6102dc600480360360208110156102c657600080fd5b810190808035906020019092919050505061098c565b005b6102e6610c61565b6040518082815260200191505060405180910390f35b61033e6004803603602081101561031257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c67565b005b610348610e11565b6040518082815260200191505060405180910390f35b6103a06004803603602081101561037457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e17565b6040518082815260200191505060405180910390f35b6103be610e60565b005b6103c8610fe6565b6040518082815260200191505060405180910390f35b6103e6610fec565b6040518082815260200191505060405180910390f35b610404610ff2565b6040518082815260200191505060405180910390f35b610422610ff8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610456611021565b6040518082815260200191505060405180910390f35b610474611034565b005b61047e6111aa565b6040518082815260200191505060405180910390f35b6104c0600480360360208110156104aa57600080fd5b81019080803590602001909291905050506111b0565b005b6104ca611417565b005b6104d4611684565b6040518082815260200191505060405180910390f35b6104f261168a565b6040518082815260200191505060405180910390f35b610510611690565b6040518082815260200191505060405180910390f35b61052e611722565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61059c6004803603602081101561057057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611748565b6040518082815260200191505060405180910390f35b6105f4600480360360208110156105c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061182f565b005b6105fe611a3a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610632611a64565b6040518082815260200191505060405180910390f35b6000600454905090565b6212750081565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b60011515600660009054906101000a900460ff16151514610712576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b61071b33611a6a565b610723611b50565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111580156107b157506000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4261642077697468647261772e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6108703382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611cb69092919063ffffffff16565b61088581600454611d5890919063ffffffff16565b6004819055506108dd81600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5890919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610928611da2565b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040518082815260200191505060405180910390a250565b600660009054906101000a900460ff1681565b60011515600660009054906101000a900460ff16151514610a15576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b610a1e33611a6a565b610a26611b50565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111158015610ab457506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610b26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f42616420636c61696d2e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610b7881600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5890919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c083382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611cb69092919063ffffffff16565b610c10611da2565b3373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4826040518082815260200191505060405180910390a250565b600f5481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f54686973206973206f6e6c7920666f72206465762e000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dcd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f7a65726f2061646472000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e68611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600e5481565b60105481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061102f42600754611e61565b905090565b61103c611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f193060016040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561119057600080fd5b505af11580156111a4573d6000803e3d6000fd5b50505050565b60055481565b60011515600660009054906101000a900460ff16151514611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b61124233611a6a565b61124a611b50565b6112693373ffffffffffffffffffffffffffffffffffffffff16611e7a565b156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806125cf6023913960400191505060405180910390fd5b61130e333083600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e8d909392919063ffffffff16565b61132381600454611f4e90919063ffffffff16565b60048190555061137b81600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4e90919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113c6611da2565b3373ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a826040518082815260200191505060405180910390a250565b61141f611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6114e96000611a6a565b61150162127500600554611fd690919063ffffffff16565b6009819055506000611520601154600554611f4e90919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156115b557600080fd5b505af11580156115c9573d6000803e3d6000fd5b505050506115e4601254601154611fd690919063ffffffff16565b600e819055506115ff60125442611f4e90919063ffffffff16565b6010819055504260088190555042600f819055506116296212750042611f4e90919063ffffffff16565b6007819055506001600660006101000a81548160ff0219169083151502179055507ff06a29c94c6f4edc1085072972d9441f7603e81c8535a308f214285d0653c850816040518082815260200191505060405180910390a150565b600a5481565b60085481565b60008060045414156116a657600a54905061171f565b61171c61170b6004546116fd670de0b6b3a76400006116ef6009546116e16008546116d342600754611e61565b611d5890919063ffffffff16565b61202090919063ffffffff16565b61202090919063ffffffff16565b611fd690919063ffffffff16565b600a54611f4e90919063ffffffff16565b90505b90565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611828600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461181a670de0b6b3a764000061180c6117f5600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117e7611690565b611d5890919063ffffffff16565b6117fe88610e17565b61202090919063ffffffff16565b611fd690919063ffffffff16565b611f4e90919063ffffffff16565b9050919050565b611837611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125a96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b611a72611690565b600a81905550611a80611021565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b4d57611ac381611748565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6007544210611cb457611b826064611b74603260055461202090919063ffffffff16565b611fd690919063ffffffff16565b600581905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19306005546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611c1d57600080fd5b505af1158015611c31573d6000803e3d6000fd5b50505050611c4d62127500600554611fd690919063ffffffff16565b600981905550611c6b62127500600754611f4e90919063ffffffff16565b600781905550611c7a33611a6a565b7ffafb0ec84dbe5a6bf08f4fec2f970b66d402032cdfea2008b11e11eb5c3990f06005546040518082815260200191505060405180910390a15b565b611d538363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506120a6565b505050565b6000611d9a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612195565b905092915050565b6000611db042601054611e61565b90506000611ddd600e54611dcf600f5485611d5890919063ffffffff16565b61202090919063ffffffff16565b9050611e4e600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611cb69092919063ffffffff16565b81600f819055505050565b600033905090565b6000818310611e705781611e72565b825b905092915050565b600080823b905060008111915050919050565b611f48846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506120a6565b50505050565b600080828401905083811015611fcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061201883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612255565b905092915050565b60008083141561203357600090506120a0565b600082840290508284828161204457fe5b041461209b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126186021913960400191505060405180910390fd5b809150505b92915050565b6060612108826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661231b9092919063ffffffff16565b90506000815111156121905780806020019051602081101561212957600080fd5b810190808051906020019092919050505061218f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612639602a913960400191505060405180910390fd5b5b505050565b6000838311158290612242576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122075780820151818401526020810190506121ec565b50505050905090810190601f1680156122345780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122c65780820151818401526020810190506122ab565b50505050905090810190601f1680156122f35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161230d57fe5b049050809150509392505050565b606061232a8484600085612333565b90509392505050565b60608247101561238e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125f26026913960400191505060405180910390fd5b61239785611e7a565b612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106124595780518252602082019150602081019050602083039250612436565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146124bb576040519150601f19603f3d011682016040523d82523d6000602084013e6124c0565b606091505b50915091506124d08282866124dc565b92505050949350505050565b606083156124ec578290506125a1565b6000835111156124ff5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561256657808201518184015260208101905061254b565b50505050905090810190601f1680156125935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373506c656173652075736520796f757220696e646976696475616c206163636f756e742e416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220319fb444680b2c5b3115416f746a9a26839be3308a5e363f7328bf7ded8e11f564736f6c634300070200330000000000000000000000009ceb84f92a0561fa3cc4132ab9c0b76a597875440000000000000000000000001d4b2b2a2ca8762410801b51f128b73743439e39
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80638366a20511610104578063c6570d85116100a2578063dbe9345111610071578063dbe934511461055a578063f2fde38b146105b2578063f5ae497a146105f6578063fb0e487a1461062a576101cf565b8063c6570d85146104cc578063c8f33c91146104ea578063cd3daf9d14610508578063da09c72c14610526576101cf565b80639642ddaf116100de5780639642ddaf1461046c5780639bfffad714610476578063a694fc3a14610494578063afbcfea1146104c2576101cf565b80638366a205146103fc5780638da5cb5b1461041a5780639231cf741461044e576101cf565b80633cf6bcfe1161017157806370a082311161014b57806370a082311461035e578063715018a6146103b65780637b0a47ee146103c05780637d8033f5146103de576101cf565b80633cf6bcfe146102de5780633ef0cc7b146102fc5780634b438c3414610340576101cf565b806322eb9363116101ad57806322eb9363146102445780632e1a7d4d1461026257806335f50ade14610290578063379607f5146102b0576101cf565b806318160ddd146101d45780631be05289146101f25780631de656a514610210575b600080fd5b6101dc610648565b6040518082815260200191505060405180910390f35b6101fa610652565b6040518082815260200191505060405180910390f35b610218610659565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61024c610683565b6040518082815260200191505060405180910390f35b61028e6004803603602081101561027857600080fd5b8101908080359060200190929190505050610689565b005b610298610979565b60405180821515815260200191505060405180910390f35b6102dc600480360360208110156102c657600080fd5b810190808035906020019092919050505061098c565b005b6102e6610c61565b6040518082815260200191505060405180910390f35b61033e6004803603602081101561031257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c67565b005b610348610e11565b6040518082815260200191505060405180910390f35b6103a06004803603602081101561037457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e17565b6040518082815260200191505060405180910390f35b6103be610e60565b005b6103c8610fe6565b6040518082815260200191505060405180910390f35b6103e6610fec565b6040518082815260200191505060405180910390f35b610404610ff2565b6040518082815260200191505060405180910390f35b610422610ff8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610456611021565b6040518082815260200191505060405180910390f35b610474611034565b005b61047e6111aa565b6040518082815260200191505060405180910390f35b6104c0600480360360208110156104aa57600080fd5b81019080803590602001909291905050506111b0565b005b6104ca611417565b005b6104d4611684565b6040518082815260200191505060405180910390f35b6104f261168a565b6040518082815260200191505060405180910390f35b610510611690565b6040518082815260200191505060405180910390f35b61052e611722565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61059c6004803603602081101561057057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611748565b6040518082815260200191505060405180910390f35b6105f4600480360360208110156105c857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061182f565b005b6105fe611a3a565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610632611a64565b6040518082815260200191505060405180910390f35b6000600454905090565b6212750081565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075481565b60011515600660009054906101000a900460ff16151514610712576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b61071b33611a6a565b610723611b50565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205481111580156107b157506000600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f4261642077697468647261772e0000000000000000000000000000000000000081525060200191505060405180910390fd5b6108703382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611cb69092919063ffffffff16565b61088581600454611d5890919063ffffffff16565b6004819055506108dd81600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5890919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610928611da2565b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040518082815260200191505060405180910390a250565b600660009054906101000a900460ff1681565b60011515600660009054906101000a900460ff16151514610a15576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b610a1e33611a6a565b610a26611b50565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548111158015610ab457506000600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054115b610b26576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f42616420636c61696d2e0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b610b7881600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d5890919063ffffffff16565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610c083382600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611cb69092919063ffffffff16565b610c10611da2565b3373ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4826040518082815260200191505060405180910390a250565b600f5481565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d2a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f54686973206973206f6e6c7920666f72206465762e000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dcd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260098152602001807f7a65726f2061646472000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60115481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e68611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b600e5481565b60105481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061102f42600754611e61565b905090565b61103c611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f193060016040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561119057600080fd5b505af11580156111a4573d6000803e3d6000fd5b50505050565b60055481565b60011515600660009054906101000a900460ff16151514611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f48617665206e6f7420737461727465642e00000000000000000000000000000081525060200191505060405180910390fd5b61124233611a6a565b61124a611b50565b6112693373ffffffffffffffffffffffffffffffffffffffff16611e7a565b156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806125cf6023913960400191505060405180910390fd5b61130e333083600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611e8d909392919063ffffffff16565b61132381600454611f4e90919063ffffffff16565b60048190555061137b81600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611f4e90919063ffffffff16565b600360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506113c6611da2565b3373ffffffffffffffffffffffffffffffffffffffff167febedb8b3c678666e7f36970bc8f57abf6d8fa2e828c0da91ea5b75bf68ed101a826040518082815260200191505060405180910390a250565b61141f611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6114e96000611a6a565b61150162127500600554611fd690919063ffffffff16565b6009819055506000611520601154600554611f4e90919063ffffffff16565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156115b557600080fd5b505af11580156115c9573d6000803e3d6000fd5b505050506115e4601254601154611fd690919063ffffffff16565b600e819055506115ff60125442611f4e90919063ffffffff16565b6010819055504260088190555042600f819055506116296212750042611f4e90919063ffffffff16565b6007819055506001600660006101000a81548160ff0219169083151502179055507ff06a29c94c6f4edc1085072972d9441f7603e81c8535a308f214285d0653c850816040518082815260200191505060405180910390a150565b600a5481565b60085481565b60008060045414156116a657600a54905061171f565b61171c61170b6004546116fd670de0b6b3a76400006116ef6009546116e16008546116d342600754611e61565b611d5890919063ffffffff16565b61202090919063ffffffff16565b61202090919063ffffffff16565b611fd690919063ffffffff16565b600a54611f4e90919063ffffffff16565b90505b90565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611828600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461181a670de0b6b3a764000061180c6117f5600c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117e7611690565b611d5890919063ffffffff16565b6117fe88610e17565b61202090919063ffffffff16565b611fd690919063ffffffff16565b611f4e90919063ffffffff16565b9050919050565b611837611e59565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125a96026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b611a72611690565b600a81905550611a80611021565b600881905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b4d57611ac381611748565b600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600a54600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6007544210611cb457611b826064611b74603260055461202090919063ffffffff16565b611fd690919063ffffffff16565b600581905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19306005546040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b158015611c1d57600080fd5b505af1158015611c31573d6000803e3d6000fd5b50505050611c4d62127500600554611fd690919063ffffffff16565b600981905550611c6b62127500600754611f4e90919063ffffffff16565b600781905550611c7a33611a6a565b7ffafb0ec84dbe5a6bf08f4fec2f970b66d402032cdfea2008b11e11eb5c3990f06005546040518082815260200191505060405180910390a15b565b611d538363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506120a6565b505050565b6000611d9a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612195565b905092915050565b6000611db042601054611e61565b90506000611ddd600e54611dcf600f5485611d5890919063ffffffff16565b61202090919063ffffffff16565b9050611e4e600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611cb69092919063ffffffff16565b81600f819055505050565b600033905090565b6000818310611e705781611e72565b825b905092915050565b600080823b905060008111915050919050565b611f48846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506120a6565b50505050565b600080828401905083811015611fcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061201883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612255565b905092915050565b60008083141561203357600090506120a0565b600082840290508284828161204457fe5b041461209b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126186021913960400191505060405180910390fd5b809150505b92915050565b6060612108826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661231b9092919063ffffffff16565b90506000815111156121905780806020019051602081101561212957600080fd5b810190808051906020019092919050505061218f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180612639602a913960400191505060405180910390fd5b5b505050565b6000838311158290612242576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122075780820151818401526020810190506121ec565b50505050905090810190601f1680156122345780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122c65780820151818401526020810190506122ab565b50505050905090810190601f1680156122f35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161230d57fe5b049050809150509392505050565b606061232a8484600085612333565b90509392505050565b60608247101561238e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806125f26026913960400191505060405180910390fd5b61239785611e7a565b612409576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106124595780518252602082019150602081019050602083039250612436565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146124bb576040519150601f19603f3d011682016040523d82523d6000602084013e6124c0565b606091505b50915091506124d08282866124dc565b92505050949350505050565b606083156124ec578290506125a1565b6000835111156124ff5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561256657808201518184015260208101905061254b565b50505050905090810190601f1680156125935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b939250505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373506c656173652075736520796f757220696e646976696475616c206163636f756e742e416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220319fb444680b2c5b3115416f746a9a26839be3308a5e363f7328bf7ded8e11f564736f6c63430007020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009ceb84f92a0561fa3cc4132ab9c0b76a597875440000000000000000000000001d4b2b2a2ca8762410801b51f128b73743439e39
-----Decoded View---------------
Arg [0] : _doki (address): 0x9cEB84f92A0561fa3Cc4132aB9c0b76A59787544
Arg [1] : _lpToken (address): 0x1D4b2B2a2Ca8762410801b51f128B73743439E39
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009ceb84f92a0561fa3cc4132ab9c0b76a59787544
Arg [1] : 0000000000000000000000001d4b2b2a2ca8762410801b51f128b73743439e39
Deployed Bytecode Sourcemap
35641:6229:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37189:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36014:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41685:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36208:30;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37893:473;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36141:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38374:391;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36618:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41015:147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36701:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37289:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22154:148;;;:::i;:::-;;36320:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36575:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36662:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21512:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40284:120;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41784:83;;;:::i;:::-;;36094:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37408:477;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40412:595;;;:::i;:::-;;36356:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36245:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39539:409;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36546:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39288:243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22457:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41580:97;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36750:47;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37189:92;37232:7;37259:14;;37252:21;;37189:92;:::o;36014:42::-;36049:7;36014:42;:::o;41685:91::-;41728:7;41763:4;;;;;;;;;;;41748:20;;41685:91;:::o;36208:30::-;;;;:::o;37893:473::-;39234:4;39219:19;;:11;;;;;;;;;;;:19;;;39211:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37956:25:::1;37970:10;37956:13;:25::i;:::-;37992:14;:12;:14::i;:::-;38035:11;:23;38047:10;38035:23;;;;;;;;;;;;;;;;38025:6;:33;;:64;;;;;38088:1;38062:11;:23;38074:10;38062:23;;;;;;;;;;;;;;;;:27;38025:64;38017:90;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;38118:40;38139:10;38151:6;38118:7;;;;;;;;;;;:20;;;;:40;;;;;:::i;:::-;38186:26;38205:6;38186:14;;:18;;:26;;;;:::i;:::-;38169:14;:43;;;;38249:35;38277:6;38249:11;:23;38261:10;38249:23;;;;;;;;;;;;;;;;:27;;:35;;;;:::i;:::-;38223:11;:23;38235:10;38223:23;;;;;;;;;;;;;;;:61;;;;38295:19;:17;:19::i;:::-;38339:10;38330:28;;;38351:6;38330:28;;;;;;;;;;;;;;;;;;37893:473:::0;:::o;36141:31::-;;;;;;;;;;;;;:::o;38374:391::-;39234:4;39219:19;;:11;;;;;;;;;;;:19;;;39211:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38434:25:::1;38448:10;38434:13;:25::i;:::-;38470:14;:12;:14::i;:::-;38513:7;:19;38521:10;38513:19;;;;;;;;;;;;;;;;38503:6;:29;;:56;;;;;38558:1;38536:7;:19;38544:10;38536:19;;;;;;;;;;;;;;;;:23;38503:56;38495:79;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;38607:31;38631:6;38607:7;:19;38615:10;38607:19;;;;;;;;;;;;;;;;:23;;:31;;;;:::i;:::-;38585:7;:19;38593:10;38585:19;;;;;;;;;;;;;;;:53;;;;38649:37;38667:10;38679:6;38649:4;;;;;;;;;;;:17;;;;:37;;;;;:::i;:::-;38697:19;:17;:19::i;:::-;38738:10;38732:25;;;38750:6;38732:25;;;;;;;;;;;;;;;;;;38374:391:::0;:::o;36618:37::-;;;;:::o;41015:147::-;41519:7;;;;;;;;;;;41505:21;;:10;:21;;;41497:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41110:1:::1;41091:21;;:7;:21;;;;41083:43;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;41147:7;41137;;:17;;;;;;;;;;;;;;;;;;41015:147:::0;:::o;36701:42::-;;;;:::o;37289:111::-;37345:7;37372:11;:20;37384:7;37372:20;;;;;;;;;;;;;;;;37365:27;;37289:111;;;:::o;22154:148::-;21734:12;:10;:12::i;:::-;21724:22;;:6;;;;;;;;;;:22;;;21716:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22261:1:::1;22224:40;;22245:6;::::0;::::1;;;;;;;;22224:40;;;;;;;;;;;;22292:1;22275:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;22154:148::o:0;36320:29::-;;;;:::o;36575:36::-;;;;:::o;36662:32::-;;;;:::o;21512:79::-;21550:7;21577:6;;;;;;;;;;;21570:13;;21512:79;:::o;40284:120::-;40331:7;40358:38;40367:15;40384:11;;40358:8;:38::i;:::-;40351:45;;40284:120;:::o;41784:83::-;21734:12;:10;:12::i;:::-;21724:22;;:6;;;;;;;;;;:22;;;21716:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41832:4:::1;;;;;;;;;;;:9;;;41850:4;41857:1;41832:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;41784:83::o:0;36094:40::-;;;;:::o;37408:477::-;39234:4;39219:19;;:11;;;;;;;;;;;:19;;;39211:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37468:25:::1;37482:10;37468:13;:25::i;:::-;37504:14;:12;:14::i;:::-;37538:32;37546:10;37538:30;;;:32::i;:::-;37537:33;37529:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37621:59;37646:10;37666:4;37673:6;37621:7;;;;;;;;;;;:24;;;;:59;;;;;;:::i;:::-;37708:26;37727:6;37708:14;;:18;;:26;;;;:::i;:::-;37691:14;:43;;;;37771:35;37799:6;37771:11;:23;37783:10;37771:23;;;;;;;;;;;;;;;;:27;;:35;;;;:::i;:::-;37745:11;:23;37757:10;37745:23;;;;;;;;;;;;;;;:61;;;;37817:19;:17;:19::i;:::-;37858:10;37852:25;;;37870:6;37852:25;;;;;;;;;;;;;;;;;;37408:477:::0;:::o;40412:595::-;21734:12;:10;:12::i;:::-;21724:22;;:6;;;;;;;;;;:22;;;21716:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40466:25:::1;40488:1;40466:13;:25::i;:::-;40515:24;36049:7;40515:10;;:14;;:24;;;;:::i;:::-;40502:10;:37;;;;40552:18;40573:29;40588:13;;40573:10;;:14;;:29;;;;:::i;:::-;40552:50;;40613:4;;;;;;;;;;;:9;;;40631:4;40638:10;40613:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40680:40;40698:21;;40680:13;;:17;;:40;;;;:::i;:::-;40660:17;:60;;;;40747:42;40767:21;;40747:15;:19;;:42;;;;:::i;:::-;40731:13;:58;;;;40819:15;40802:14;:32;;;;40866:15;40845:18;:36;;;;40906:29;36049:7;40906:15;:19;;:29;;;;:::i;:::-;40892:11;:43;;;;40962:4;40948:11;;:18;;;;;;;;;;;;;;;;;;40982:17;40988:10;40982:17;;;;;;;;;;;;;;;;;;21794:1;40412:595::o:0;36356:35::-;;;;:::o;36245:33::-;;;;:::o;39539:409::-;39586:7;39628:1;39610:14;;:19;39606:75;;;39653:16;;39646:23;;;;39606:75;39698:242;39733:192;39910:14;;39733:150;39878:4;39733:118;39840:10;;39733:80;39798:14;;39733:38;39742:15;39759:11;;39733:8;:38::i;:::-;:64;;:80;;;;:::i;:::-;:106;;:118;;;;:::i;:::-;:144;;:150;;;;:::i;:::-;:176;;:192;;;;:::i;:::-;39698:16;;:34;;:242;;;;:::i;:::-;39691:249;;39539:409;;:::o;36546:22::-;;;;;;;;;;;;;:::o;39288:243::-;39351:7;39378:145;39506:7;:16;39514:7;39506:16;;;;;;;;;;;;;;;;39378:105;39478:4;39378:77;39401:53;39422:22;:31;39445:7;39422:31;;;;;;;;;;;;;;;;39401:16;:14;:16::i;:::-;:20;;:53;;;;:::i;:::-;39378:18;39388:7;39378:9;:18::i;:::-;:22;;:77;;;;:::i;:::-;:99;;:105;;;;:::i;:::-;:127;;:145;;;;:::i;:::-;39371:152;;39288:243;;;:::o;22457:244::-;21734:12;:10;:12::i;:::-;21724:22;;:6;;;;;;;;;;:22;;;21716:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22566:1:::1;22546:22;;:8;:22;;;;22538:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22656:8;22627:38;;22648:6;::::0;::::1;;;;;;;;22627:38;;;;;;;;;;;;22685:8;22676:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;22457:244:::0;:::o;41580:97::-;41626:7;41661;;;;;;;;;;;41646:23;;41580:97;:::o;36750:47::-;;;;:::o;39956:320::-;40035:16;:14;:16::i;:::-;40016;:35;;;;40079:16;:14;:16::i;:::-;40062:14;:33;;;;40129:1;40110:21;;:7;:21;;;40106:163;;40167:25;40184:7;40167:16;:25::i;:::-;40148:7;:16;40156:7;40148:16;;;;;;;;;;;;;;;:44;;;;40241:16;;40207:22;:31;40230:7;40207:31;;;;;;;;;;;;;;;:50;;;;40106:163;39956:320;:::o;38773:394::-;38840:11;;38821:15;:30;38817:343;;38881:27;38904:3;38881:18;38896:2;38881:10;;:14;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;38868:10;:40;;;;38923:4;;;;;;;;;;;:9;;;38941:4;38948:10;;38923:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38989:24;36049:7;38989:10;;:14;;:24;;;;:::i;:::-;38976:10;:37;;;;39042:25;36049:7;39042:11;;:15;;:25;;;;:::i;:::-;39028:11;:39;;;;39084:25;39098:10;39084:13;:25::i;:::-;39129:19;39137:10;;39129:19;;;;;;;;;;;;;;;;;;38817:343;38773:394::o;12837:177::-;12920:86;12940:5;12970:23;;;12995:2;12999:5;12947:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12920:19;:86::i;:::-;12837:177;;;:::o;16637:136::-;16695:7;16722:43;16726:1;16729;16722:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;16715:50;;16637:136;;;;:::o;41170:289::-;41219:15;41237:40;41246:15;41263:13;;41237:8;:40::i;:::-;41219:58;;41288:18;41309:54;41345:17;;41309:31;41321:18;;41309:7;:11;;:31;;;;:::i;:::-;:35;;:54;;;;:::i;:::-;41288:75;;41374:38;41392:7;;;;;;;;;;;41401:10;41374:4;;;;;;;;;;;:17;;;;:38;;;;;:::i;:::-;41444:7;41423:18;:28;;;;41170:289;;:::o;20666:106::-;20719:15;20754:10;20747:17;;20666:106;:::o;10953:::-;11011:7;11042:1;11038;:5;:13;;11050:1;11038:13;;;11046:1;11038:13;11031:20;;10953:106;;;;:::o;3347:422::-;3407:4;3615:12;3726:7;3714:20;3706:28;;3760:1;3753:4;:8;3746:15;;;3347:422;;;:::o;13022:205::-;13123:96;13143:5;13173:27;;;13202:4;13208:2;13212:5;13150:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13123:19;:96::i;:::-;13022:205;;;;:::o;16173:181::-;16231:7;16251:9;16267:1;16263;:5;16251:17;;16292:1;16287;:6;;16279:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16345:1;16338:8;;;16173:181;;;;:::o;18474:132::-;18532:7;18559:39;18563:1;18566;18559:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;18552:46;;18474:132;;;;:::o;17527:471::-;17585:7;17835:1;17830;:6;17826:47;;;17860:1;17853:8;;;;17826:47;17885:9;17901:1;17897;:5;17885:17;;17930:1;17925;17921;:5;;;;;;:10;17913:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17989:1;17982:8;;;17527:471;;;;;:::o;15142:761::-;15566:23;15592:69;15620:4;15592:69;;;;;;;;;;;;;;;;;15600:5;15592:27;;;;:69;;;;;:::i;:::-;15566:95;;15696:1;15676:10;:17;:21;15672:224;;;15818:10;15807:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15799:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15672:224;15142:761;;;:::o;17076:192::-;17162:7;17195:1;17190;:6;;17198:12;17182:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17222:9;17238:1;17234;:5;17222:17;;17259:1;17252:8;;;17076:192;;;;;:::o;19102:278::-;19188:7;19220:1;19216;:5;19223:12;19208:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19247:9;19263:1;19259;:5;;;;;;19247:17;;19371:1;19364:8;;;19102:278;;;;;:::o;6265:195::-;6368:12;6400:52;6422:6;6430:4;6436:1;6439:12;6400:21;:52::i;:::-;6393:59;;6265:195;;;;;:::o;7317:530::-;7444:12;7502:5;7477:21;:30;;7469:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7569:18;7580:6;7569:10;:18::i;:::-;7561:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7695:12;7709:23;7736:6;:11;;7756:5;7764:4;7736:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7694:75;;;;7787:52;7805:7;7814:10;7826:12;7787:17;:52::i;:::-;7780:59;;;;7317:530;;;;;;:::o;9857:742::-;9972:12;10001:7;9997:595;;;10032:10;10025:17;;;;9997:595;10166:1;10146:10;:17;:21;10142:439;;;10409:10;10403:17;10470:15;10457:10;10453:2;10449:19;10442:44;10357:148;10552:12;10545:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9857:742;;;;;;:::o
Swarm Source
ipfs://319fb444680b2c5b3115416f746a9a26839be3308a5e363f7328bf7ded8e11f5
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.096684 | 62.971 | $6.09 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.