Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
97,425.651594617629142633 YYF
Holders
420
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 YYFValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YinYang
Compiler Version
v0.7.1+commit.f4a555be
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-14 */ pragma solidity ^0.7.1; // .,ad88888888baa, // ,d8P""" ""9888ba. // .a8" ,ad88888888888a // aP' ,88888888888888888a // ,8" ,88888888888888888888, // ,8' (888888888( )888888888, // ,8' `8888888888888888888888 // 8) `888888888888888888888, // 8 "8888888888888888888) // 8 `888888888888888888) // 8) "8888888888888888 // (b "88888888888888' // `8, (8) 8888888888888) // "8a ,888888888888) // V8, d88888888888" // `8b, ,d8888888888P' // `V8a, ,ad8888888888P' YIN 5% bonus // ""88888888888888888P" YANG 10% burn // """""""""""" http://yinyang.finance /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ 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"); } } } /** * @dev A token holder contract that will allow a beneficiary to extract the * tokens after a given release time. */ contract TokenTimelock { using SafeERC20 for IERC20; // ERC20 basic token contract being held IERC20 private _token; // beneficiary of tokens after they are released address private _beneficiary; // timestamp when token release is enabled uint256 private _releaseTime; constructor (IERC20 token, address beneficiary, uint256 releaseTime) public { // solhint-disable-next-line not-rely-on-time require(releaseTime > block.timestamp, "TokenTimelock: release time is before current time"); _token = token; _beneficiary = beneficiary; _releaseTime = releaseTime; } /** * @return the token being held. */ function token() public view returns (IERC20) { return _token; } /** * @return the beneficiary of the tokens. */ function beneficiary() public view returns (address) { return _beneficiary; } /** * @return the time when the tokens are released. */ function releaseTime() public view returns (uint256) { return _releaseTime; } /** * @notice Transfers tokens held by timelock to beneficiary. */ function release() public virtual { // solhint-disable-next-line not-rely-on-time require(block.timestamp >= _releaseTime, "TokenTimelock: current time is before release time"); uint256 amount = _token.balanceOf(address(this)); require(amount > 0, "TokenTimelock: no tokens to release"); _token.safeTransfer(_beneficiary, amount); } } // /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { 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; } } // /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { using SafeMath for uint256; /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // .,ad88888888baa, // ,d8P""" ""9888ba. // .a8" ,ad88888888888a // aP' ,88888888888888888a // ,8" ,88888888888888888888, // ,8' (888888888( )888888888, // ,8' `8888888888888888888888 // 8) `888888888888888888888, // 8 "8888888888888888888) // 8 `888888888888888888) // 8) "8888888888888888 // (b "88888888888888' // `8, (8) 8888888888888) // "8a ,888888888888) // V8, d88888888888" // `8b, ,d8888888888P' // `V8a, ,ad8888888888P' YIN 5% bonus // ""88888888888888888P" YANG 10% burn // """""""""""" http://yinyang.finance interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router01 { function WETH() external pure returns (address); } contract YinYang is ERC20Burnable, Pausable { using SafeMath for uint256; uint256 public constant YIN = 5; uint256 public constant YANG = 10; uint256 public constant SUPER_SAIYANG = 25; uint256 public totalYinAmountMinted; uint256 public totalYangAmountBurned; uint256 public unpauseTime; mapping(address => bool) public bypassYinYang; uint256 private nonce = 1010; IUniswapV2Router01 internal constant UNISWAPV2_ROUTER = IUniswapV2Router01(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); IUniswapV2Factory public constant UNISWAP_FACTORY = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); address public uniswapPool; address public immutable liquidityPool; TokenTimelock public stakingRewardsPool; TokenTimelock public team; event Yin(address sender, uint256 amount); event Yang(address sender, uint256 amount); event SuperSaiyang(address sender, uint256 amount); modifier whenActive() { require(!paused() || msg.sender == liquidityPool, "YinYang: contract not yet active"); _; } modifier onlyLiquidityPool() { require(msg.sender == liquidityPool, "YinYang: not liquidity pool"); _; } constructor(address _liquidityPool) ERC20("Yin Yang", "YYF") { liquidityPool = _liquidityPool; _mint(_liquidityPool, (45_000 + 9_000) * 10**18); // initial liquidity pool _addBypassYinYang(_liquidityPool, true); stakingRewardsPool = new TokenTimelock(IERC20(this), msg.sender, block.timestamp + 4 weeks); _mint(address(stakingRewardsPool), 41_000 * 10**18); // staking pool locked for 1 month _addBypassYinYang(address(stakingRewardsPool), true); team = new TokenTimelock(IERC20(this), msg.sender, block.timestamp + 1 weeks); _mint(address(team), 5_000 * 10**18); // team/dev/promotions locked for 1 weeks _addBypassYinYang(address(team), true); uniswapPool = UNISWAP_FACTORY.createPair(UNISWAPV2_ROUTER.WETH(), address(this)); _addBypassYinYang(uniswapPool, true); _pause(); } function unpause() external virtual onlyLiquidityPool { super._unpause(); unpauseTime = block.timestamp; } function _addBypassYinYang(address _address, bool _bypass) internal { bypassYinYang[_address] = _bypass; } function _random(address _s1, address _s2, address _s3, uint256 _s4, uint256 _s5, bytes32 _s6) public pure returns (uint256) { return uint256(keccak256(abi.encodePacked(_s1, _s2, _s3, _s4, _s5, _s6))); } function _transfer(address _sender, address _recipient, uint256 _amount) internal virtual override whenActive() { if (!bypassYinYang[_sender]) { if (block.timestamp > (unpauseTime + (SUPER_SAIYANG * 5 minutes))) { nonce = _random(tx.origin, _recipient, block.coinbase, block.timestamp, nonce, blockhash(block.number - 1)); bool isYin = ((nonce % 101) & 1) == 0; uint256 yinYangAmount = _amount.mul(isYin ? YIN : YANG).div(100); if (isYin) { if (totalYinAmountMinted + yinYangAmount < totalYangAmountBurned) { super._mint(_sender, yinYangAmount); totalYinAmountMinted = totalYinAmountMinted.add(yinYangAmount); emit Yin(_sender, yinYangAmount); } } else { super._burn(_sender, yinYangAmount); totalYangAmountBurned = totalYangAmountBurned.add(yinYangAmount); _amount = _amount.sub(yinYangAmount); emit Yang(_sender, yinYangAmount); } } else { uint256 superSaiyang = _amount.mul(SUPER_SAIYANG).div(100); super._burn(_sender, superSaiyang); _amount = _amount.sub(superSaiyang); emit SuperSaiyang(_sender, superSaiyang); } _amount = _amount.sub(1); } super._transfer(_sender, _recipient, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_liquidityPool","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SuperSaiyang","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Yang","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Yin","type":"event"},{"inputs":[],"name":"SUPER_SAIYANG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YANG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_s1","type":"address"},{"internalType":"address","name":"_s2","type":"address"},{"internalType":"address","name":"_s3","type":"address"},{"internalType":"uint256","name":"_s4","type":"uint256"},{"internalType":"uint256","name":"_s5","type":"uint256"},{"internalType":"bytes32","name":"_s6","type":"bytes32"}],"name":"_random","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bypassYinYang","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingRewardsPool","outputs":[{"internalType":"contract TokenTimelock","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"team","outputs":[{"internalType":"contract TokenTimelock","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalYangAmountBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalYinAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a06040526103f2600a553480156200001757600080fd5b50604051620036b3380380620036b3833981810160405260208110156200003d57600080fd5b81019080805190602001909291905050506040518060400160405280600881526020017f59696e2059616e670000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f59594600000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000d2929190620009a9565b508060049080519060200190620000eb929190620009a9565b506012600560006101000a81548160ff021916908360ff16021790555050506000600560016101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506200017881690b6f588aa7bcf5c00000620005dd60201b60201c565b6200018b816001620007bb60201b60201c565b30336224ea004201604051620001a19062000a30565b808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051809103906000f08015801562000202573d6000803e3d6000fd5b50600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000281600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166908ae9d4cd4b0a7a00000620005dd60201b60201c565b620002b6600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007bb60201b60201c565b303362093a804201604051620002cc9062000a30565b808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051809103906000f0801580156200032d573d6000803e3d6000fd5b50600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ac600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1669010f0cf064dd59200000620005dd60201b60201c565b620003e1600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007bb60201b60201c565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c65396737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200046c57600080fd5b505afa15801562000481573d6000803e3d6000fd5b505050506040513d60208110156200049857600080fd5b8101908080519060200190929190505050306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b1580156200051457600080fd5b505af115801562000529573d6000803e3d6000fd5b505050506040513d60208110156200054057600080fd5b8101908080519060200190929190505050600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005c6600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007bb60201b60201c565b620005d66200081660201b60201c565b5062000a5d565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000681576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b62000695600083836200091360201b60201c565b620006b1816002546200091860201b620011221790919060201c565b6002819055506200070f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200091860201b620011221790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600560019054906101000a900460ff16156200089a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620008e6620009a160201b60201c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b505050565b60008082840190508381101562000997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620009ec57805160ff191683800117855562000a1d565b8280016001018555821562000a1d579182015b8281111562000a1c578251825591602001919060010190620009ff565b5b50905062000a2c919062000a3e565b5090565b6109548062002d5f83390190565b5b8082111562000a5957600081600090555060010162000a3f565b5090565b60805160601c6122da62000a8560003980610bf55280610da252806113ba52506122da6000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a9059cbb11610097578063d2f131f611610071578063d2f131f614610878578063d356593414610896578063dd62ed3e146108b4578063f68f210b1461092c576101c4565b8063a9059cbb146107ac578063bdd3d82514610810578063c74c0fac14610844576101c4565b806385f2aef2116100d357806385f2aef2146106735780638be8ef91146106a757806395d89b41146106c5578063a457c2d714610748576101c4565b806370a08231146105af5780637870bf261461060757806379cc679014610625576101c4565b806339509351116101665780634383ea6d116101405780634383ea6d1461048757806359d9d38b1461053d5780635c975abb1461055b578063665a11ca1461057b576101c4565b806339509351146103eb5780633f4ba83a1461044f57806342966c6814610459576101c4565b8063201d4411116101a2578063201d4411146102ce57806323b872dd14610328578063313ce567146103ac57806337f9cd5a146103cd576101c4565b806306fdde03146101c9578063095ea7b31461024c57806318160ddd146102b0575b600080fd5b6101d1610960565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102115780820151818401526020810190506101f6565b50505050905090810190601f16801561023e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102986004803603604081101561026257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a02565b60405180821515815260200191505060405180910390f35b6102b8610a20565b6040518082815260200191505060405180910390f35b610310600480360360208110156102e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a2a565b60405180821515815260200191505060405180910390f35b6103946004803603606081101561033e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a4a565b60405180821515815260200191505060405180910390f35b6103b4610b23565b604051808260ff16815260200191505060405180910390f35b6103d5610b3a565b6040518082815260200191505060405180910390f35b6104376004803603604081101561040157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b40565b60405180821515815260200191505060405180910390f35b610457610bf3565b005b6104856004803603602081101561046f57600080fd5b8101908080359060200190929190505050610cc5565b005b610527600480360360c081101561049d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190929190505050610cd9565b6040518082815260200191505060405180910390f35b610545610d84565b6040518082815260200191505060405180910390f35b610563610d89565b60405180821515815260200191505060405180910390f35b610583610da0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105f1600480360360208110156105c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dc4565b6040518082815260200191505060405180910390f35b61060f610e0c565b6040518082815260200191505060405180910390f35b6106716004803603604081101561063b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e11565b005b61067b610e73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106af610e99565b6040518082815260200191505060405180910390f35b6106cd610e9f565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561070d5780820151818401526020810190506106f2565b50505050905090810190601f16801561073a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107946004803603604081101561075e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f41565b60405180821515815260200191505060405180910390f35b6107f8600480360360408110156107c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061100e565b60405180821515815260200191505060405180910390f35b61081861102c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61084c611052565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61088061106a565b6040518082815260200191505060405180910390f35b61089e611070565b6040518082815260200191505060405180910390f35b610916600480360360408110156108ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611075565b6040518082815260200191505060405180910390f35b6109346110fc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109f85780601f106109cd576101008083540402835291602001916109f8565b820191906000526020600020905b8154815290600101906020018083116109db57829003601f168201915b5050505050905090565b6000610a16610a0f6111aa565b84846111b2565b6001905092915050565b6000600254905090565b60096020528060005260406000206000915054906101000a900460ff1681565b6000610a578484846113a9565b610b1884610a636111aa565b610b13856040518060600160405280602881526020016121ca60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ac96111aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117379092919063ffffffff16565b6111b2565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60065481565b6000610be9610b4d6111aa565b84610be48560016000610b5e6111aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461112290919063ffffffff16565b6111b2565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f59696e59616e673a206e6f74206c697175696469747920706f6f6c000000000081525060200191505060405180910390fd5b610cbc6117f7565b42600881905550565b610cd6610cd06111aa565b826118ea565b50565b6000868686868686604051602001808773ffffffffffffffffffffffffffffffffffffffff1660601b81526014018673ffffffffffffffffffffffffffffffffffffffff1660601b81526014018573ffffffffffffffffffffffffffffffffffffffff1660601b815260140184815260200183815260200182815260200196505050505050506040516020818303038152906040528051906020012060001c90509695505050505050565b600581565b6000600560019054906101000a900460ff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601981565b6000610e50826040518060600160405280602481526020016121f260249139610e4186610e3c6111aa565b611075565b6117379092919063ffffffff16565b9050610e6483610e5e6111aa565b836111b2565b610e6e83836118ea565b505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f375780601f10610f0c57610100808354040283529160200191610f37565b820191906000526020600020905b815481529060010190602001808311610f1a57829003601f168201915b5050505050905090565b6000611004610f4e6111aa565b84610fff856040518060600160405280602581526020016122806025913960016000610f786111aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117379092919063ffffffff16565b6111b2565b6001905092915050565b600061102261101b6111aa565b84846113a9565b6001905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b60085481565b600a81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808284019050838110156111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061225c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806121616022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6113b1610d89565b158061140857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61147a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f59696e59616e673a20636f6e7472616374206e6f74207965742061637469766581525060200191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117275761012c6019026008540142111561166f576114f032834142600a546001430340610cd9565b600a8190555060008060016065600a548161150757fe5b0616149050600061154260646115348461152257600a611525565b60055b86611aae90919063ffffffff16565b611b3490919063ffffffff16565b905081156115d857600754816006540110156115d3576115628582611b7e565b6115778160065461112290919063ffffffff16565b6006819055507ff3b6e6f302177583023cbb51089f09b2e858eceac85e03da327e85512e4e20c38582604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15b611668565b6115e285826118ea565b6115f78160075461112290919063ffffffff16565b6007819055506116108184611d4590919063ffffffff16565b92507f5bb579930dad0de350ee6683a147de2ac63e78c48bddb552729a2551ba8f36fd8582604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15b5050611710565b6000611698606461168a601985611aae90919063ffffffff16565b611b3490919063ffffffff16565b90506116a484826118ea565b6116b78183611d4590919063ffffffff16565b91507fea66bdccfafbc26e02c618da442452f14a42616c7030944137397652c35cd31b8482604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505b611724600182611d4590919063ffffffff16565b90505b611732838383611d8f565b505050565b60008383111582906117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156117a957808201518184015260208101905061178e565b50505050905090810190601f1680156117d65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600560019054906101000a900460ff16611879576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118bd6111aa565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122166021913960400191505060405180910390fd5b61197c82600083612050565b6119e78160405180606001604052806022815260200161213f602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117379092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a3e81600254611d4590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080831415611ac15760009050611b2e565b6000828402905082848281611ad257fe5b0414611b29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806121a96021913960400191505060405180910390fd5b809150505b92915050565b6000611b7683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612055565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611c2d60008383612050565b611c428160025461112290919063ffffffff16565b600281905550611c99816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461112290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000611d8783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611737565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e15576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806122376025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061211c6023913960400191505060405180910390fd5b611ea6838383612050565b611f1181604051806060016040528060268152602001612183602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117379092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fa4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461112290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b505050565b60008083118290612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120c65780820151818401526020810190506120ab565b50505050905090810190601f1680156120f35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161210d57fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122073f2b1f76684c4d8d27840caa9f099b8c0389b77fd857bae3e22b2c08931444764736f6c63430007010033608060405234801561001057600080fd5b506040516109543803806109548339818101604052606081101561003357600080fd5b810190808051906020019092919080519060200190929190805190602001909291905050504281116100b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806109226032913960400191505060405180910390fd5b826000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806002819055505050506107d88061014a6000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806338af3eed1461005157806386d1a69f14610085578063b91d40011461008f578063fc0c546a146100ad575b600080fd5b6100596100e1565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61008d61010b565b005b6100976102f6565b6040518082815260200191505060405180910390f35b6100b5610300565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600254421015610166576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806107246032913960400191505060405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156101f057600080fd5b505afa158015610204573d6000803e3d6000fd5b505050506040513d602081101561021a57600080fd5b8101908080519060200190929190505050905060008111610286576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806107806023913960400191505060405180910390fd5b6102f3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166103299092919063ffffffff16565b50565b6000600254905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6103c68363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506103cb565b505050565b606061042d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166104ba9092919063ffffffff16565b90506000815111156104b55780806020019051602081101561044e57600080fd5b81019080805190602001909291905050506104b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180610756602a913960400191505060405180910390fd5b5b505050565b60606104c984846000856104d2565b90509392505050565b60606104dd856106d8565b61054f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061059f578051825260208201915060208101905060208303925061057c565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114610601576040519150601f19603f3d011682016040523d82523d6000602084013e610606565b606091505b5091509150811561061b5780925050506106d0565b60008151111561062e5780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561069557808201518184015260208101905061067a565b50505050905090810190601f1680156106c25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561071a57506000801b8214155b9250505091905056fe546f6b656e54696d656c6f636b3a2063757272656e742074696d65206973206265666f72652072656c656173652074696d655361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564546f6b656e54696d656c6f636b3a206e6f20746f6b656e7320746f2072656c65617365a26469706673582212208071debd33b7a76692e50240ed9769a20c8f83c019b745aa54af22d4d858324464736f6c63430007010033546f6b656e54696d656c6f636b3a2072656c656173652074696d65206973206265666f72652063757272656e742074696d650000000000000000000000007b9b1b39080a3c1fc6d942b1c2f9b7c33381376c
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a9059cbb11610097578063d2f131f611610071578063d2f131f614610878578063d356593414610896578063dd62ed3e146108b4578063f68f210b1461092c576101c4565b8063a9059cbb146107ac578063bdd3d82514610810578063c74c0fac14610844576101c4565b806385f2aef2116100d357806385f2aef2146106735780638be8ef91146106a757806395d89b41146106c5578063a457c2d714610748576101c4565b806370a08231146105af5780637870bf261461060757806379cc679014610625576101c4565b806339509351116101665780634383ea6d116101405780634383ea6d1461048757806359d9d38b1461053d5780635c975abb1461055b578063665a11ca1461057b576101c4565b806339509351146103eb5780633f4ba83a1461044f57806342966c6814610459576101c4565b8063201d4411116101a2578063201d4411146102ce57806323b872dd14610328578063313ce567146103ac57806337f9cd5a146103cd576101c4565b806306fdde03146101c9578063095ea7b31461024c57806318160ddd146102b0575b600080fd5b6101d1610960565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102115780820151818401526020810190506101f6565b50505050905090810190601f16801561023e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102986004803603604081101561026257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a02565b60405180821515815260200191505060405180910390f35b6102b8610a20565b6040518082815260200191505060405180910390f35b610310600480360360208110156102e457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610a2a565b60405180821515815260200191505060405180910390f35b6103946004803603606081101561033e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a4a565b60405180821515815260200191505060405180910390f35b6103b4610b23565b604051808260ff16815260200191505060405180910390f35b6103d5610b3a565b6040518082815260200191505060405180910390f35b6104376004803603604081101561040157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b40565b60405180821515815260200191505060405180910390f35b610457610bf3565b005b6104856004803603602081101561046f57600080fd5b8101908080359060200190929190505050610cc5565b005b610527600480360360c081101561049d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190929190505050610cd9565b6040518082815260200191505060405180910390f35b610545610d84565b6040518082815260200191505060405180910390f35b610563610d89565b60405180821515815260200191505060405180910390f35b610583610da0565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6105f1600480360360208110156105c557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dc4565b6040518082815260200191505060405180910390f35b61060f610e0c565b6040518082815260200191505060405180910390f35b6106716004803603604081101561063b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e11565b005b61067b610e73565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106af610e99565b6040518082815260200191505060405180910390f35b6106cd610e9f565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561070d5780820151818401526020810190506106f2565b50505050905090810190601f16801561073a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107946004803603604081101561075e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f41565b60405180821515815260200191505060405180910390f35b6107f8600480360360408110156107c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061100e565b60405180821515815260200191505060405180910390f35b61081861102c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61084c611052565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61088061106a565b6040518082815260200191505060405180910390f35b61089e611070565b6040518082815260200191505060405180910390f35b610916600480360360408110156108ca57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611075565b6040518082815260200191505060405180910390f35b6109346110fc565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109f85780601f106109cd576101008083540402835291602001916109f8565b820191906000526020600020905b8154815290600101906020018083116109db57829003601f168201915b5050505050905090565b6000610a16610a0f6111aa565b84846111b2565b6001905092915050565b6000600254905090565b60096020528060005260406000206000915054906101000a900460ff1681565b6000610a578484846113a9565b610b1884610a636111aa565b610b13856040518060600160405280602881526020016121ca60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ac96111aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117379092919063ffffffff16565b6111b2565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60065481565b6000610be9610b4d6111aa565b84610be48560016000610b5e6111aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461112290919063ffffffff16565b6111b2565b6001905092915050565b7f0000000000000000000000007b9b1b39080a3c1fc6d942b1c2f9b7c33381376c73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f59696e59616e673a206e6f74206c697175696469747920706f6f6c000000000081525060200191505060405180910390fd5b610cbc6117f7565b42600881905550565b610cd6610cd06111aa565b826118ea565b50565b6000868686868686604051602001808773ffffffffffffffffffffffffffffffffffffffff1660601b81526014018673ffffffffffffffffffffffffffffffffffffffff1660601b81526014018573ffffffffffffffffffffffffffffffffffffffff1660601b815260140184815260200183815260200182815260200196505050505050506040516020818303038152906040528051906020012060001c90509695505050505050565b600581565b6000600560019054906101000a900460ff16905090565b7f0000000000000000000000007b9b1b39080a3c1fc6d942b1c2f9b7c33381376c81565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601981565b6000610e50826040518060600160405280602481526020016121f260249139610e4186610e3c6111aa565b611075565b6117379092919063ffffffff16565b9050610e6483610e5e6111aa565b836111b2565b610e6e83836118ea565b505050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075481565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f375780601f10610f0c57610100808354040283529160200191610f37565b820191906000526020600020905b815481529060010190602001808311610f1a57829003601f168201915b5050505050905090565b6000611004610f4e6111aa565b84610fff856040518060600160405280602581526020016122806025913960016000610f786111aa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117379092919063ffffffff16565b6111b2565b6001905092915050565b600061102261101b6111aa565b84846113a9565b6001905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b60085481565b600a81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808284019050838110156111a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061225c6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806121616022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6113b1610d89565b158061140857507f0000000000000000000000007b9b1b39080a3c1fc6d942b1c2f9b7c33381376c73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61147a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f59696e59616e673a20636f6e7472616374206e6f74207965742061637469766581525060200191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117275761012c6019026008540142111561166f576114f032834142600a546001430340610cd9565b600a8190555060008060016065600a548161150757fe5b0616149050600061154260646115348461152257600a611525565b60055b86611aae90919063ffffffff16565b611b3490919063ffffffff16565b905081156115d857600754816006540110156115d3576115628582611b7e565b6115778160065461112290919063ffffffff16565b6006819055507ff3b6e6f302177583023cbb51089f09b2e858eceac85e03da327e85512e4e20c38582604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15b611668565b6115e285826118ea565b6115f78160075461112290919063ffffffff16565b6007819055506116108184611d4590919063ffffffff16565b92507f5bb579930dad0de350ee6683a147de2ac63e78c48bddb552729a2551ba8f36fd8582604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15b5050611710565b6000611698606461168a601985611aae90919063ffffffff16565b611b3490919063ffffffff16565b90506116a484826118ea565b6116b78183611d4590919063ffffffff16565b91507fea66bdccfafbc26e02c618da442452f14a42616c7030944137397652c35cd31b8482604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505b611724600182611d4590919063ffffffff16565b90505b611732838383611d8f565b505050565b60008383111582906117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156117a957808201518184015260208101905061178e565b50505050905090810190601f1680156117d65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600560019054906101000a900460ff16611879576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118bd6111aa565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122166021913960400191505060405180910390fd5b61197c82600083612050565b6119e78160405180606001604052806022815260200161213f602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117379092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a3e81600254611d4590919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080831415611ac15760009050611b2e565b6000828402905082848281611ad257fe5b0414611b29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806121a96021913960400191505060405180910390fd5b809150505b92915050565b6000611b7683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612055565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611c2d60008383612050565b611c428160025461112290919063ffffffff16565b600281905550611c99816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461112290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000611d8783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611737565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e15576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806122376025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061211c6023913960400191505060405180910390fd5b611ea6838383612050565b611f1181604051806060016040528060268152602001612183602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117379092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fa4816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461112290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b505050565b60008083118290612101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156120c65780820151818401526020810190506120ab565b50505050905090810190601f1680156120f35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161210d57fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122073f2b1f76684c4d8d27840caa9f099b8c0389b77fd857bae3e22b2c08931444764736f6c63430007010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007b9b1b39080a3c1fc6d942b1c2f9b7c33381376c
-----Decoded View---------------
Arg [0] : _liquidityPool (address): 0x7b9b1b39080A3c1FC6d942B1c2f9B7C33381376c
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007b9b1b39080a3c1fc6d942b1c2f9b7c33381376c
Deployed Bytecode Sourcemap
38786:4255:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27784:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29890:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28859:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39129:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30533:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28711:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39005:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31263:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40988:129;;;:::i;:::-;;37020:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41253:217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38872:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24517:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39504:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29022:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38954:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37430:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;39599:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39049:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27986:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31984:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29354:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39469:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39347:113;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39094:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38912:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29592:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39551:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27784:83;27821:13;27854:5;27847:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27784:83;:::o;29890:169::-;29973:4;29990:39;29999:12;:10;:12::i;:::-;30013:7;30022:6;29990:8;:39::i;:::-;30047:4;30040:11;;29890:169;;;;:::o;28859:100::-;28912:7;28939:12;;28932:19;;28859:100;:::o;39129:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;30533:321::-;30639:4;30656:36;30666:6;30674:9;30685:6;30656:9;:36::i;:::-;30703:121;30712:6;30720:12;:10;:12::i;:::-;30734:89;30772:6;30734:89;;;;;;;;;;;;;;;;;:11;:19;30746:6;30734:19;;;;;;;;;;;;;;;:33;30754:12;:10;:12::i;:::-;30734:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;30703:8;:121::i;:::-;30842:4;30835:11;;30533:321;;;;;:::o;28711:83::-;28752:5;28777:9;;;;;;;;;;;28770:16;;28711:83;:::o;39005:35::-;;;;:::o;31263:218::-;31351:4;31368:83;31377:12;:10;:12::i;:::-;31391:7;31400:50;31439:10;31400:11;:25;31412:12;:10;:12::i;:::-;31400:25;;;;;;;;;;;;;;;:34;31426:7;31400:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;31368:8;:83::i;:::-;31469:4;31462:11;;31263:218;;;;:::o;40988:129::-;39999:13;39985:27;;:10;:27;;;39977:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41053:16:::1;:14;:16::i;:::-;41094:15;41080:11;:29;;;;40988:129::o:0;37020:91::-;37076:27;37082:12;:10;:12::i;:::-;37096:6;37076:5;:27::i;:::-;37020:91;:::o;41253:217::-;41369:7;41431:3;41436;41441;41446;41451;41456;41414:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41404:57;;;;;;41396:66;;41389:73;;41253:217;;;;;;;;:::o;38872:31::-;38902:1;38872:31;:::o;24517:78::-;24556:4;24580:7;;;;;;;;;;;24573:14;;24517:78;:::o;39504:38::-;;;:::o;29022:119::-;29088:7;29115:9;:18;29125:7;29115:18;;;;;;;;;;;;;;;;29108:25;;29022:119;;;:::o;38954:42::-;38994:2;38954:42;:::o;37430:295::-;37507:26;37536:84;37573:6;37536:84;;;;;;;;;;;;;;;;;:32;37546:7;37555:12;:10;:12::i;:::-;37536:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;37507:113;;37633:51;37642:7;37651:12;:10;:12::i;:::-;37665:18;37633:8;:51::i;:::-;37695:22;37701:7;37710:6;37695:5;:22::i;:::-;37430:295;;;:::o;39599:25::-;;;;;;;;;;;;;:::o;39049:36::-;;;;:::o;27986:87::-;28025:13;28058:7;28051:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27986:87;:::o;31984:269::-;32077:4;32094:129;32103:12;:10;:12::i;:::-;32117:7;32126:96;32165:15;32126:96;;;;;;;;;;;;;;;;;:11;:25;32138:12;:10;:12::i;:::-;32126:25;;;;;;;;;;;;;;;:34;32152:7;32126:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;32094:8;:129::i;:::-;32241:4;32234:11;;31984:269;;;;:::o;29354:175::-;29440:4;29457:42;29467:12;:10;:12::i;:::-;29481:9;29492:6;29457:9;:42::i;:::-;29517:4;29510:11;;29354:175;;;;:::o;39469:26::-;;;;;;;;;;;;;:::o;39347:113::-;39417:42;39347:113;:::o;39094:26::-;;;;:::o;38912:33::-;38943:2;38912:33;:::o;29592:151::-;29681:7;29708:11;:18;29720:5;29708:18;;;;;;;;;;;;;;;:27;29727:7;29708:27;;;;;;;;;;;;;;;;29701:34;;29592:151;;;;:::o;39551:39::-;;;;;;;;;;;;;:::o;4426:181::-;4484:7;4504:9;4520:1;4516;:5;4504:17;;4545:1;4540;:6;;4532:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4598:1;4591:8;;;4426:181;;;;:::o;20983:106::-;21036:15;21071:10;21064:17;;20983:106;:::o;35131:346::-;35250:1;35233:19;;:5;:19;;;;35225:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35331:1;35312:21;;:7;:21;;;;35304:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35415:6;35385:11;:18;35397:5;35385:18;;;;;;;;;;;;;;;:27;35404:7;35385:27;;;;;;;;;;;;;;;:36;;;;35453:7;35437:32;;35446:5;35437:32;;;35462:6;35437:32;;;;;;;;;;;;;;;;;;35131:346;;;:::o;41478:1560::-;39835:8;:6;:8::i;:::-;39834:9;:40;;;;39861:13;39847:27;;:10;:27;;;39834:40;39826:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41616:13:::1;:22;41630:7;41616:22;;;;;;;;;;;;;;;;;;;;;;;;;41611:1364;;41709:9;38994:2;41693:25;41678:11;;:41;41659:15;:61;41655:1270;;;41749:99;41757:9;41768:10;41780:14;41796:15;41813:5;;41845:1;41830:12;:16;41820:27;41749:7;:99::i;:::-;41741:5;:107;;;;41867:10;41903:1:::0;41897::::1;41890:3;41882:5;;:11;;;;;;41881:17;41880:24;41867:37;;41923:21;41947:40;41983:3;41947:31;41959:5;:18;;38943:2;41959:18;;;38902:1;41959:18;41947:7;:11;;:31;;;;:::i;:::-;:35;;:40;;;;:::i;:::-;41923:64;;42010:5;42006:639;;;42083:21;;42067:13;42044:20;;:36;:60;42040:300;;;42133:35;42145:7;42154:13;42133:11;:35::i;:::-;42218:39;42243:13;42218:20;;:24;;:39;;;;:::i;:::-;42195:20;:62;;;;42289:27;42293:7;42302:13;42289:27;;;;;;;;;;;;;;;;;;;;;;;;;;42040:300;42006:639;;;42388:35;42400:7;42409:13;42388:11;:35::i;:::-;42470:40;42496:13;42470:21;;:25;;:40;;;;:::i;:::-;42446:21;:64;;;;42543:26;42555:13;42543:7;:11;;:26;;;;:::i;:::-;42533:36;;42597:28;42602:7;42611:13;42597:28;;;;;;;;;;;;;;;;;;;;;;;;;;42006:639;41655:1270;;;;;42685:20;42708:35;42739:3;42708:26;38994:2;42708:7;:11;;:26;;;;:::i;:::-;:30;;:35;;;;:::i;:::-;42685:58;;42762:34;42774:7;42783:12;42762:11;:34::i;:::-;42825:25;42837:12;42825:7;:11;;:25;;;;:::i;:::-;42815:35;;42874;42887:7;42896:12;42874:35;;;;;;;;;;;;;;;;;;;;;;;;;;41655:1270;;42949:14;42961:1;42949:7;:11;;:14;;;;:::i;:::-;42939:24;;41611:1364;42985:45;43001:7;43010:10;43022:7;42985:15;:45::i;:::-;41478:1560:::0;;;:::o;5329:192::-;5415:7;5448:1;5443;:6;;5451:12;5435:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5475:9;5491:1;5487;:5;5475:17;;5512:1;5505:8;;;5329:192;;;;;:::o;25566:120::-;25111:7;;;;;;;;;;;25103:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25635:5:::1;25625:7;;:15;;;;;;;;;;;;;;;;;;25656:22;25665:12;:10;:12::i;:::-;25656:22;;;;;;;;;;;;;;;;;;;;25566:120::o:0;34273:418::-;34376:1;34357:21;;:7;:21;;;;34349:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34429:49;34450:7;34467:1;34471:6;34429:20;:49::i;:::-;34512:68;34535:6;34512:68;;;;;;;;;;;;;;;;;:9;:18;34522:7;34512:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;34491:9;:18;34501:7;34491:18;;;;;;;;;;;;;;;:89;;;;34606:24;34623:6;34606:12;;:16;;:24;;;;:::i;:::-;34591:12;:39;;;;34672:1;34646:37;;34655:7;34646:37;;;34676:6;34646:37;;;;;;;;;;;;;;;;;;34273:418;;:::o;5780:471::-;5838:7;6088:1;6083;:6;6079:47;;;6113:1;6106:8;;;;6079:47;6138:9;6154:1;6150;:5;6138:17;;6183:1;6178;6174;:5;;;;;;:10;6166:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6242:1;6235:8;;;5780:471;;;;;:::o;6727:132::-;6785:7;6812:39;6816:1;6819;6812:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6805:46;;6727:132;;;;:::o;33563:378::-;33666:1;33647:21;;:7;:21;;;;33639:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33717:49;33746:1;33750:7;33759:6;33717:20;:49::i;:::-;33794:24;33811:6;33794:12;;:16;;:24;;;;:::i;:::-;33779:12;:39;;;;33850:30;33873:6;33850:9;:18;33860:7;33850:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;33829:9;:18;33839:7;33829:18;;;;;;;;;;;;;;;:51;;;;33917:7;33896:37;;33913:1;33896:37;;;33926:6;33896:37;;;;;;;;;;;;;;;;;;33563:378;;:::o;4890:136::-;4948:7;4975:43;4979:1;4982;4975:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4968:50;;4890:136;;;;:::o;32743:539::-;32867:1;32849:20;;:6;:20;;;;32841:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32951:1;32930:23;;:9;:23;;;;32922:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33006:47;33027:6;33035:9;33046:6;33006:20;:47::i;:::-;33086:71;33108:6;33086:71;;;;;;;;;;;;;;;;;:9;:17;33096:6;33086:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;33066:9;:17;33076:6;33066:17;;;;;;;;;;;;;;;:91;;;;33191:32;33216:6;33191:9;:20;33201:9;33191:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;33168:9;:20;33178:9;33168:20;;;;;;;;;;;;;;;:55;;;;33256:9;33239:35;;33248:6;33239:35;;;33267:6;33239:35;;;;;;;;;;;;;;;;;;32743:539;;;:::o;36502:92::-;;;;:::o;7355:278::-;7441:7;7473:1;7469;:5;7476:12;7461:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7500:9;7516:1;7512;:5;;;;;;7500:17;;7624:1;7617:8;;;7355:278;;;;;:::o
Swarm Source
ipfs://8071debd33b7a76692e50240ed9769a20c8f83c019b745aa54af22d4d8583244
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.