Latest 25 from a total of 449,201 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 44843678 | 47 hrs ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 44719095 | 6 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 44719092 | 6 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 44692755 | 7 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 44650603 | 8 days ago | IN | 0 BNB | 0.00004643 | ||||
Approve | 44596359 | 10 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 44596357 | 10 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 44465731 | 15 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 44232766 | 23 days ago | IN | 0 BNB | 0.00013951 | ||||
Approve | 44178742 | 25 days ago | IN | 0 BNB | 0.00002664 | ||||
Unwrap | 44145657 | 26 days ago | IN | 0 BNB | 0.0000688 | ||||
Approve | 44063510 | 29 days ago | IN | 0 BNB | 0.00023253 | ||||
Approve | 44043729 | 29 days ago | IN | 0 BNB | 0.0000293 | ||||
Approve | 43951601 | 32 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 43936894 | 33 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 43583857 | 45 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 43551581 | 46 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 43385491 | 52 days ago | IN | 0 BNB | 0.00007266 | ||||
Approve | 43287179 | 56 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 43249598 | 57 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 43195688 | 59 days ago | IN | 0 BNB | 0.00002664 | ||||
Approve | 43189125 | 59 days ago | IN | 0 BNB | 0.00007266 | ||||
Approve | 43108590 | 62 days ago | IN | 0 BNB | 0.0000465 | ||||
Transfer | 43096418 | 62 days ago | IN | 0 BNB | 0.00002987 | ||||
Transfer | 43096341 | 62 days ago | IN | 0 BNB | 0.00002987 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5471227 | 1379 days ago | 0 BNB | ||||
5471227 | 1379 days ago | 0 BNB | ||||
5471151 | 1379 days ago | 0 BNB | ||||
5471151 | 1379 days ago | 0 BNB | ||||
5471126 | 1379 days ago | 0 BNB | ||||
5471126 | 1379 days ago | 0 BNB | ||||
5470975 | 1379 days ago | 0 BNB | ||||
5470975 | 1379 days ago | 0 BNB | ||||
5470975 | 1379 days ago | 0 BNB | ||||
5470975 | 1379 days ago | 0 BNB | ||||
5470975 | 1379 days ago | 0 BNB | ||||
5470974 | 1379 days ago | 0 BNB | ||||
5470974 | 1379 days ago | 0 BNB | ||||
5470974 | 1379 days ago | 0 BNB | ||||
5470974 | 1379 days ago | 0 BNB | ||||
5470974 | 1379 days ago | 0 BNB | ||||
5470973 | 1379 days ago | 0 BNB | ||||
5470973 | 1379 days ago | 0 BNB | ||||
5470973 | 1379 days ago | 0 BNB | ||||
5470973 | 1379 days ago | 0 BNB | ||||
5470973 | 1379 days ago | 0 BNB | ||||
5470972 | 1379 days ago | 0 BNB | ||||
5470972 | 1379 days ago | 0 BNB | ||||
5470972 | 1379 days ago | 0 BNB | ||||
5470972 | 1379 days ago | 0 BNB |
Loading...
Loading
Contract Name:
wSOTE
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2020-12-21 */ pragma solidity 0.5.17; /* * @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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @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 {ERC20Mintable}. * * 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; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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 returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public 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 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 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 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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _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 { require(account != address(0), "ERC20: mint to the zero address"); _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 { require(account != address(0), "ERC20: burn from the zero address"); _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 { 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 Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } } // File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol pragma solidity ^0.5.0; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @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. * * 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; } } // File: @openzeppelin/contracts/math/Math.sol pragma solidity ^0.5.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.5.5; /** * @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 Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @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]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.5.0; /** * @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 ERC20;` 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)); } 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. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "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"); } } } // File: contracts/ISOTE.sol pragma solidity 0.5.17; contract ISOTE is IERC20 { function whiteListed(address owner) external view returns (bool); function isLockedForMV(address owner) external view returns (uint256); } // File: contracts/ECDSA.sol pragma solidity ^0.5.0; // A copy from https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2237/files /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Check the signature length if (signature.length != 65) { revert("ECDSA: invalid signature length"); } // Divide the signature in r, s and v variables bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return recover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover-bytes32-bytes-} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { revert("ECDSA: invalid signature 's' value"); } if (v != 27 && v != 28) { revert("ECDSA: invalid signature 'v' value"); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * replicates the behavior of the * https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_sign[`eth_sign`] * JSON-RPC method. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } } // File: contracts/ERC20Permit.sol pragma solidity ^0.5.0; // Adapted copy from https://github.com/OpenZeppelin/openzeppelin-contracts/pull/2237/files /** * @dev Extension of {ERC20} that allows token holders to use their tokens * without sending any transactions by setting {IERC20-allowance} with a * signature using the {permit} method, and then spend them via * {IERC20-transferFrom}. * * The {permit} signature mechanism conforms to the {IERC2612Permit} interface. */ contract ERC20Permit is ERC20, ERC20Detailed { mapping(address => uint256) private _nonces; bytes32 private constant _PERMIT_TYPEHASH = keccak256( "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)" ); // Mapping of ChainID to domain separators. This is a very gas efficient way // to not recalculate the domain separator on every call, while still // automatically detecting ChainID changes. mapping(uint256 => bytes32) private _domainSeparators; constructor() internal { _updateDomainSeparator(); } /** * @dev See {IERC2612Permit-permit}. * * If https://eips.ethereum.org/EIPS/eip-1344[ChainID] ever changes, the * EIP712 Domain Separator is automatically recalculated. */ function permit( address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public { require(blockTimestamp() <= deadline, "ERC20Permit: expired deadline"); bytes32 hashStruct = keccak256( abi.encode(_PERMIT_TYPEHASH, owner, spender, amount, _nonces[owner], deadline) ); bytes32 hash = keccak256(abi.encodePacked(uint16(0x1901), _domainSeparator(), hashStruct)); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _nonces[owner]++; _approve(owner, spender, amount); } /** * @dev See {IERC2612Permit-nonces}. */ function nonces(address owner) public view returns (uint256) { return _nonces[owner]; } function _updateDomainSeparator() private returns (bytes32) { uint256 _chainID = chainID(); bytes32 newDomainSeparator = keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes(name())), keccak256(bytes("1")), // Version _chainID, address(this) ) ); _domainSeparators[_chainID] = newDomainSeparator; return newDomainSeparator; } // Returns the domain separator, updating it if chainID changes function _domainSeparator() private returns (bytes32) { bytes32 domainSeparator = _domainSeparators[chainID()]; if (domainSeparator != 0x00) { return domainSeparator; } else { return _updateDomainSeparator(); } } function chainID() public view returns (uint256 _chainID) { assembly { _chainID := chainid() } } function blockTimestamp() public view returns (uint256) { return block.timestamp; } } // File: contracts/wSOTE.sol pragma solidity 0.5.17; contract wSOTE is ERC20, ERC20Detailed, ERC20Permit { using SafeERC20 for ERC20; using SafeMath for uint256; ISOTE public SOTE; modifier notwSOTE(address recipient) { require(recipient != address(this), "wSOTE: can not send to self"); _; } constructor(ISOTE _sote) public ERC20Detailed("Wrapped SOTE", "wSOTE", 18) { SOTE = _sote; } function _transfer(address sender, address recipient, uint256 amount) internal notwSOTE(recipient) { super._transfer(sender, recipient, amount); } function wrap(uint256 _amount) external { require(SOTE.transferFrom(msg.sender, address(this), _amount), "wSOTE: transferFrom failed"); _mint(msg.sender, _amount); } function unwrap(uint256 _amount) external { unwrapTo(msg.sender, _amount); } function unwrapTo(address _to, uint256 _amount) public notwSOTE(_to) { _burn(msg.sender, _amount); require(SOTE.transfer(_to, _amount), "wSOTE: transfer failed"); } function canWrap(address _owner, uint256 _amount) external view returns (bool success, string memory reason) { if (SOTE.allowance(_owner, address(this)) < _amount) { return (false, "insufficient allowance"); } if (SOTE.balanceOf(_owner) < _amount) { return (false, "insufficient SOTE balance"); } if (SOTE.isLockedForMV(_owner) > now) { return (false, "SOTE balance lockedForMv"); } if (!SOTE.whiteListed(address(this))) { return (false, "wSOTE is not whitelisted"); } return (true, ""); } function canUnwrap(address _owner, address _recipient, uint256 _amount) external view returns (bool success, string memory reason) { if (balanceOf(_owner) < _amount) { return (false, "insufficient wSOTE balance"); } if (!SOTE.whiteListed(_recipient)) { return (false, "recipient is not whitelisted"); } if (SOTE.isLockedForMV(address(this)) > now) { return (false, "wSOTE is lockedForMv"); } return (true, ""); } /// @dev Method to claim junk and accidentally sent tokens function claimTokens(ERC20 _token, address payable _to, uint256 _balance) external { require(_to != address(0), "wSOTE: can not send to zero address"); if (_token == ERC20(address(SOTE))) { uint256 surplusBalance = _token.balanceOf(address(this)).sub(totalSupply()); require(surplusBalance > 0, "wSOTE: there is no accidentally sent SOTE"); uint256 balance = _balance == 0 ? surplusBalance : Math.min(surplusBalance, _balance); _token.safeTransfer(_to, balance); } else if (_token == ERC20(0)) { // for Ether uint256 totalBalance = address(this).balance; uint256 balance = _balance == 0 ? totalBalance : Math.min(totalBalance, _balance); _to.transfer(balance); } else { // any other erc20 uint256 totalBalance = _token.balanceOf(address(this)); uint256 balance = _balance == 0 ? totalBalance : Math.min(totalBalance, _balance); require(balance > 0, "wSOTE: trying to send 0 balance"); _token.safeTransfer(_to, balance); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract ISOTE","name":"_sote","type":"address"}],"payable":false,"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":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"},{"constant":true,"inputs":[],"name":"SOTE","outputs":[{"internalType":"contract ISOTE","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"blockTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canUnwrap","outputs":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"string","name":"reason","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canWrap","outputs":[{"internalType":"bool","name":"success","type":"bool"},{"internalType":"string","name":"reason","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"chainID","outputs":[{"internalType":"uint256","name":"_chainID","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ERC20","name":"_token","type":"address"},{"internalType":"address payable","name":"_to","type":"address"},{"internalType":"uint256","name":"_balance","type":"uint256"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"unwrap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"unwrapTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"wrap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200254338038062002543833981810160405260208110156200003757600080fd5b5051604080518082018252600c81526b5772617070656420534f544560a01b60208281019182528351808501909452600584526477534f544560d81b9084015281519192916012916200008e916003919062000268565b508151620000a490600490602085019062000268565b506005805460ff191660ff9290921691909117905550620000c69050620000ed565b50600880546001600160a01b0319166001600160a01b03929092169190911790556200030a565b600080620001036001600160e01b03620001ca16565b905060006040518080620024f1605291396040519081900360520190209050620001356001600160e01b03620001ce16565b805160209182012060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060840152608083018590523060a0808501919091528151808503909101815260c090930181528251928201929092206000948552600790915292208290555090505b90565b4690565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156200025e5780601f1062000232576101008083540402835291602001916200025e565b820191906000526020600020905b8154815290600101906020018083116200024057829003601f168201915b5050505050905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002ab57805160ff1916838001178555620002db565b82800160010185558215620002db579182015b82811115620002db578251825591602001919060010190620002be565b50620002e9929150620002ed565b5090565b620001c791905b80821115620002e95760008155600101620002f4565b6121d7806200031a6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80639fc314c8116100b8578063c12ea3ca1161007c578063c12ea3ca14610477578063d505accf146104a3578063dd62ed3e146104f4578063de0e9a3e14610522578063ea598cb01461053f578063f22fac151461055c57610142565b80639fc314c8146103d7578063a457c2d71461040f578063a9059cbb1461043b578063adb6183214610467578063adc879e91461046f57610142565b8063395093511161010a578063395093511461027257806347d8a0591461029e5780635bd481191461034d57806370a08231146103835780637ecebe00146103a957806395d89b41146103cf57610142565b806306fdde0314610147578063095ea7b3146101c457806318160ddd1461020457806323b872dd1461021e578063313ce56714610254575b600080fd5b61014f610580565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b038135169060200135610617565b604080519115158252519081900360200190f35b61020c610634565b60408051918252519081900360200190f35b6101f06004803603606081101561023457600080fd5b506001600160a01b0381358116916020810135909116906040013561063a565b61025c6106c7565b6040805160ff9092168252519081900360200190f35b6101f06004803603604081101561028857600080fd5b506001600160a01b0381351690602001356106d0565b6102ca600480360360408110156102b457600080fd5b506001600160a01b038135169060200135610724565b604051808315151515815260200180602001828103825283818151815260200191508051906020019080838360005b838110156103115781810151838201526020016102f9565b50505050905090810190601f16801561033e5780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b6102ca6004803603606081101561036357600080fd5b506001600160a01b03813581169160208101359091169060400135610a3c565b61020c6004803603602081101561039957600080fd5b50356001600160a01b0316610c17565b61020c600480360360208110156103bf57600080fd5b50356001600160a01b0316610c32565b61014f610c4d565b61040d600480360360608110156103ed57600080fd5b506001600160a01b03813581169160208101359091169060400135610cae565b005b6101f06004803603604081101561042557600080fd5b506001600160a01b038135169060200135610f84565b6101f06004803603604081101561045157600080fd5b506001600160a01b038135169060200135610ff2565b61020c611006565b61020c61100a565b61040d6004803603604081101561048d57600080fd5b506001600160a01b03813516906020013561100e565b61040d600480360360e08110156104b957600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611143565b61020c6004803603604081101561050a57600080fd5b506001600160a01b0381358116916020013516611319565b61040d6004803603602081101561053857600080fd5b5035611344565b61040d6004803603602081101561055557600080fd5b5035611351565b610564611432565b604080516001600160a01b039092168252519081900360200190f35b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561060c5780601f106105e15761010080835404028352916020019161060c565b820191906000526020600020905b8154815290600101906020018083116105ef57829003601f168201915b505050505090505b90565b600061062b610624611441565b8484611445565b50600192915050565b60025490565b6000610647848484611531565b6106bd84610653611441565b6106b885604051806060016040528060288152602001612099602891396001600160a01b038a16600090815260016020526040812090610691611441565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6115a116565b611445565b5060019392505050565b60055460ff1690565b600061062b6106dd611441565b846106b885600160006106ee611441565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61163816565b60085460408051636eb1769f60e11b81526001600160a01b0385811660048301523060248301529151600093606093869391169163dd62ed3e91604480820192602092909190829003018186803b15801561077e57600080fd5b505afa158015610792573d6000803e3d6000fd5b505050506040513d60208110156107a857600080fd5b505110156107e7575050604080518082019091526016815275696e73756666696369656e7420616c6c6f77616e636560501b6020820152600090610a35565b600854604080516370a0823160e01b81526001600160a01b0387811660048301529151869392909216916370a0823191602480820192602092909190829003018186803b15801561083757600080fd5b505afa15801561084b573d6000803e3d6000fd5b505050506040513d602081101561086157600080fd5b505110156108a757505060408051808201909152601981527f696e73756666696369656e7420534f54452062616c616e6365000000000000006020820152600090610a35565b600854604080516398fd371f60e01b81526001600160a01b0387811660048301529151429392909216916398fd371f91602480820192602092909190829003018186803b1580156108f757600080fd5b505afa15801561090b573d6000803e3d6000fd5b505050506040513d602081101561092157600080fd5b5051111561096757505060408051808201909152601881527f534f54452062616c616e6365206c6f636b6564466f724d7600000000000000006020820152600090610a35565b60085460408051633e83f2a160e21b815230600482015290516001600160a01b039092169163fa0fca8491602480820192602092909190829003018186803b1580156109b257600080fd5b505afa1580156109c6573d6000803e3d6000fd5b505050506040513d60208110156109dc57600080fd5b5051610a2057505060408051808201909152601881527f77534f5445206973206e6f742077686974656c697374656400000000000000006020820152600090610a35565b50506040805160208101909152600081526001905b9250929050565b6000606082610a4a86610c17565b1015610a8e57505060408051808201909152601a81527f696e73756666696369656e742077534f54452062616c616e63650000000000006020820152600090610c0f565b60085460408051633e83f2a160e21b81526001600160a01b0387811660048301529151919092169163fa0fca84916024808301926020929190829003018186803b158015610adb57600080fd5b505afa158015610aef573d6000803e3d6000fd5b505050506040513d6020811015610b0557600080fd5b5051610b4957505060408051808201909152601c81527f726563697069656e74206973206e6f742077686974656c6973746564000000006020820152600090610c0f565b600854604080516398fd371f60e01b8152306004820152905142926001600160a01b0316916398fd371f916024808301926020929190829003018186803b158015610b9357600080fd5b505afa158015610ba7573d6000803e3d6000fd5b505050506040513d6020811015610bbd57600080fd5b50511115610bfa5750506040805180820190915260148152733ba9a7aa229034b9903637b1b5b2b22337b926bb60611b6020820152600090610c0f565b50506040805160208101909152600081526001905b935093915050565b6001600160a01b031660009081526020819052604090205490565b6001600160a01b031660009081526006602052604090205490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561060c5780601f106105e15761010080835404028352916020019161060c565b6001600160a01b038216610cf35760405162461bcd60e51b8152600401808060200182810382526023815260200180611f686023913960400191505060405180910390fd5b6008546001600160a01b0384811691161415610e11576000610d94610d16610634565b604080516370a0823160e01b815230600482015290516001600160a01b038816916370a08231916024808301926020929190829003018186803b158015610d5c57600080fd5b505afa158015610d70573d6000803e3d6000fd5b505050506040513d6020811015610d8657600080fd5b50519063ffffffff61169916565b905060008111610dd55760405162461bcd60e51b81526004018080602001828103825260298152602001806121076029913960400191505060405180910390fd5b60008215610dec57610de782846116db565b610dee565b815b9050610e0a6001600160a01b038616858363ffffffff6116f116565b5050610f7f565b6001600160a01b038316610e7a574760008215610e3757610e3282846116db565b610e39565b815b6040519091506001600160a01b0385169082156108fc029083906000818181858888f19350505050158015610e72573d6000803e3d6000fd5b505050610f7f565b604080516370a0823160e01b815230600482015290516000916001600160a01b038616916370a0823191602480820192602092909190829003018186803b158015610ec457600080fd5b505afa158015610ed8573d6000803e3d6000fd5b505050506040513d6020811015610eee57600080fd5b5051905060008215610f0957610f0482846116db565b610f0b565b815b905060008111610f62576040805162461bcd60e51b815260206004820152601f60248201527f77534f54453a20747279696e6720746f2073656e6420302062616c616e636500604482015290519081900360640190fd5b610f7c6001600160a01b038616858363ffffffff6116f116565b50505b505050565b600061062b610f91611441565b846106b88560405180606001604052806025815260200161217e6025913960016000610fbb611441565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6115a116565b600061062b610fff611441565b8484611531565b4290565b4690565b816001600160a01b03811630141561106d576040805162461bcd60e51b815260206004820152601b60248201527f77534f54453a2063616e206e6f742073656e6420746f2073656c660000000000604482015290519081900360640190fd5b6110773383611743565b6008546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156110cd57600080fd5b505af11580156110e1573d6000803e3d6000fd5b505050506040513d60208110156110f757600080fd5b5051610f7f576040805162461bcd60e51b81526020600482015260166024820152751dd4d3d5114e881d1c985b9cd9995c8819985a5b195960521b604482015290519081900360640190fd5b8361114c611006565b111561119f576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b60006040518080611fd360529139604080519182900360520182206001600160a01b03808d16600081815260066020908152858220548188019590955286860192909252918d166060860152608085018c905260a085019290925260c08085018b90528351808603909101815260e090940190925282519201919091209250905061190161122b61183f565b83604051602001808461ffff1661ffff1660f01b81526002018381526020018281526020019350505050604051602081830303815290604052805190602001209050600061127b8287878761187e565b9050896001600160a01b0316816001600160a01b0316146112e3576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6001600160a01b038a1660009081526006602052604090208054600101905561130d8a8a8a611445565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61134e338261100e565b50565b600854604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b1580156113ab57600080fd5b505af11580156113bf573d6000803e3d6000fd5b505050506040513d60208110156113d557600080fd5b5051611428576040805162461bcd60e51b815260206004820152601a60248201527f77534f54453a207472616e7366657246726f6d206661696c6564000000000000604482015290519081900360640190fd5b61134e33826119fc565b6008546001600160a01b031681565b3390565b6001600160a01b03831661148a5760405162461bcd60e51b81526004018080602001828103825260248152602001806121306024913960400191505060405180910390fd5b6001600160a01b0382166114cf5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f466022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b816001600160a01b038116301415611590576040805162461bcd60e51b815260206004820152601b60248201527f77534f54453a2063616e206e6f742073656e6420746f2073656c660000000000604482015290519081900360640190fd5b61159b848484611aec565b50505050565b600081848411156116305760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115f55781810151838201526020016115dd565b50505050905090810190601f1680156116225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611692576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061169283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115a1565b60008183106116ea5781611692565b5090919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f7f908490611c48565b6001600160a01b0382166117885760405162461bcd60e51b81526004018080602001828103825260218152602001806120c16021913960400191505060405180910390fd5b6117cb81604051806060016040528060228152602001611f24602291396001600160a01b038516600090815260208190526040902054919063ffffffff6115a116565b6001600160a01b0383166000908152602081905260409020556002546117f7908263ffffffff61169916565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000806007600061184e61100a565b81526020810191909152604001600020549050801561186e579050610614565b611876611e00565b915050610614565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156118df5760405162461bcd60e51b8152600401808060200182810382526022815260200180611fb16022913960400191505060405180910390fd5b8360ff16601b141580156118f757508360ff16601c14155b156119335760405162461bcd60e51b81526004018080602001828103825260228152602001806120256022913960400191505060405180910390fd5b604080516000808252602080830180855289905260ff88168385015260608301879052608083018690529251909260019260a080820193601f1981019281900390910190855afa15801561198b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119f3576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b95945050505050565b6001600160a01b038216611a57576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611a6a908263ffffffff61163816565b6002556001600160a01b038216600090815260208190526040902054611a96908263ffffffff61163816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038316611b315760405162461bcd60e51b81526004018080602001828103825260258152602001806120e26025913960400191505060405180910390fd5b6001600160a01b038216611b765760405162461bcd60e51b8152600401808060200182810382526023815260200180611f016023913960400191505060405180910390fd5b611bb981604051806060016040528060268152602001611f8b602691396001600160a01b038616600090815260208190526040902054919063ffffffff6115a116565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611bee908263ffffffff61163816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b611c5a826001600160a01b0316611ec4565b611cab576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611ce95780518252601f199092019160209182019101611cca565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611d4b576040519150601f19603f3d011682016040523d82523d6000602084013e611d50565b606091505b509150915081611da7576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561159b57808060200190516020811015611dc357600080fd5b505161159b5760405162461bcd60e51b815260040180806020018281038252602a815260200180612154602a913960400191505060405180910390fd5b600080611e0b61100a565b9050600060405180806120476052913960520190506040518091039020611e30610580565b805160209182012060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060840152608083018590523060a0808501919091528151808503909101815260c0909301815282519282019290922060009485526007909152922082905550905090565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611ef857508115155b94935050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737377534f54453a2063616e206e6f742073656e6420746f207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c75655065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e652945434453413a20696e76616c6964207369676e6174757265202776272076616c7565454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e74726163742945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737377534f54453a207468657265206973206e6f206163636964656e74616c6c792073656e7420534f544545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820aceb49adb4ef66f9b33a77c9b5a051406b9c58eadb67c5c4e45a954c10dd2c4864736f6c63430005110032454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429000000000000000000000000b0a51d5e242b6a86420ec34660b14d8b9cd4d5fc
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c80639fc314c8116100b8578063c12ea3ca1161007c578063c12ea3ca14610477578063d505accf146104a3578063dd62ed3e146104f4578063de0e9a3e14610522578063ea598cb01461053f578063f22fac151461055c57610142565b80639fc314c8146103d7578063a457c2d71461040f578063a9059cbb1461043b578063adb6183214610467578063adc879e91461046f57610142565b8063395093511161010a578063395093511461027257806347d8a0591461029e5780635bd481191461034d57806370a08231146103835780637ecebe00146103a957806395d89b41146103cf57610142565b806306fdde0314610147578063095ea7b3146101c457806318160ddd1461020457806323b872dd1461021e578063313ce56714610254575b600080fd5b61014f610580565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610189578181015183820152602001610171565b50505050905090810190601f1680156101b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101f0600480360360408110156101da57600080fd5b506001600160a01b038135169060200135610617565b604080519115158252519081900360200190f35b61020c610634565b60408051918252519081900360200190f35b6101f06004803603606081101561023457600080fd5b506001600160a01b0381358116916020810135909116906040013561063a565b61025c6106c7565b6040805160ff9092168252519081900360200190f35b6101f06004803603604081101561028857600080fd5b506001600160a01b0381351690602001356106d0565b6102ca600480360360408110156102b457600080fd5b506001600160a01b038135169060200135610724565b604051808315151515815260200180602001828103825283818151815260200191508051906020019080838360005b838110156103115781810151838201526020016102f9565b50505050905090810190601f16801561033e5780820380516001836020036101000a031916815260200191505b50935050505060405180910390f35b6102ca6004803603606081101561036357600080fd5b506001600160a01b03813581169160208101359091169060400135610a3c565b61020c6004803603602081101561039957600080fd5b50356001600160a01b0316610c17565b61020c600480360360208110156103bf57600080fd5b50356001600160a01b0316610c32565b61014f610c4d565b61040d600480360360608110156103ed57600080fd5b506001600160a01b03813581169160208101359091169060400135610cae565b005b6101f06004803603604081101561042557600080fd5b506001600160a01b038135169060200135610f84565b6101f06004803603604081101561045157600080fd5b506001600160a01b038135169060200135610ff2565b61020c611006565b61020c61100a565b61040d6004803603604081101561048d57600080fd5b506001600160a01b03813516906020013561100e565b61040d600480360360e08110156104b957600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611143565b61020c6004803603604081101561050a57600080fd5b506001600160a01b0381358116916020013516611319565b61040d6004803603602081101561053857600080fd5b5035611344565b61040d6004803603602081101561055557600080fd5b5035611351565b610564611432565b604080516001600160a01b039092168252519081900360200190f35b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561060c5780601f106105e15761010080835404028352916020019161060c565b820191906000526020600020905b8154815290600101906020018083116105ef57829003601f168201915b505050505090505b90565b600061062b610624611441565b8484611445565b50600192915050565b60025490565b6000610647848484611531565b6106bd84610653611441565b6106b885604051806060016040528060288152602001612099602891396001600160a01b038a16600090815260016020526040812090610691611441565b6001600160a01b03168152602081019190915260400160002054919063ffffffff6115a116565b611445565b5060019392505050565b60055460ff1690565b600061062b6106dd611441565b846106b885600160006106ee611441565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61163816565b60085460408051636eb1769f60e11b81526001600160a01b0385811660048301523060248301529151600093606093869391169163dd62ed3e91604480820192602092909190829003018186803b15801561077e57600080fd5b505afa158015610792573d6000803e3d6000fd5b505050506040513d60208110156107a857600080fd5b505110156107e7575050604080518082019091526016815275696e73756666696369656e7420616c6c6f77616e636560501b6020820152600090610a35565b600854604080516370a0823160e01b81526001600160a01b0387811660048301529151869392909216916370a0823191602480820192602092909190829003018186803b15801561083757600080fd5b505afa15801561084b573d6000803e3d6000fd5b505050506040513d602081101561086157600080fd5b505110156108a757505060408051808201909152601981527f696e73756666696369656e7420534f54452062616c616e6365000000000000006020820152600090610a35565b600854604080516398fd371f60e01b81526001600160a01b0387811660048301529151429392909216916398fd371f91602480820192602092909190829003018186803b1580156108f757600080fd5b505afa15801561090b573d6000803e3d6000fd5b505050506040513d602081101561092157600080fd5b5051111561096757505060408051808201909152601881527f534f54452062616c616e6365206c6f636b6564466f724d7600000000000000006020820152600090610a35565b60085460408051633e83f2a160e21b815230600482015290516001600160a01b039092169163fa0fca8491602480820192602092909190829003018186803b1580156109b257600080fd5b505afa1580156109c6573d6000803e3d6000fd5b505050506040513d60208110156109dc57600080fd5b5051610a2057505060408051808201909152601881527f77534f5445206973206e6f742077686974656c697374656400000000000000006020820152600090610a35565b50506040805160208101909152600081526001905b9250929050565b6000606082610a4a86610c17565b1015610a8e57505060408051808201909152601a81527f696e73756666696369656e742077534f54452062616c616e63650000000000006020820152600090610c0f565b60085460408051633e83f2a160e21b81526001600160a01b0387811660048301529151919092169163fa0fca84916024808301926020929190829003018186803b158015610adb57600080fd5b505afa158015610aef573d6000803e3d6000fd5b505050506040513d6020811015610b0557600080fd5b5051610b4957505060408051808201909152601c81527f726563697069656e74206973206e6f742077686974656c6973746564000000006020820152600090610c0f565b600854604080516398fd371f60e01b8152306004820152905142926001600160a01b0316916398fd371f916024808301926020929190829003018186803b158015610b9357600080fd5b505afa158015610ba7573d6000803e3d6000fd5b505050506040513d6020811015610bbd57600080fd5b50511115610bfa5750506040805180820190915260148152733ba9a7aa229034b9903637b1b5b2b22337b926bb60611b6020820152600090610c0f565b50506040805160208101909152600081526001905b935093915050565b6001600160a01b031660009081526020819052604090205490565b6001600160a01b031660009081526006602052604090205490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561060c5780601f106105e15761010080835404028352916020019161060c565b6001600160a01b038216610cf35760405162461bcd60e51b8152600401808060200182810382526023815260200180611f686023913960400191505060405180910390fd5b6008546001600160a01b0384811691161415610e11576000610d94610d16610634565b604080516370a0823160e01b815230600482015290516001600160a01b038816916370a08231916024808301926020929190829003018186803b158015610d5c57600080fd5b505afa158015610d70573d6000803e3d6000fd5b505050506040513d6020811015610d8657600080fd5b50519063ffffffff61169916565b905060008111610dd55760405162461bcd60e51b81526004018080602001828103825260298152602001806121076029913960400191505060405180910390fd5b60008215610dec57610de782846116db565b610dee565b815b9050610e0a6001600160a01b038616858363ffffffff6116f116565b5050610f7f565b6001600160a01b038316610e7a574760008215610e3757610e3282846116db565b610e39565b815b6040519091506001600160a01b0385169082156108fc029083906000818181858888f19350505050158015610e72573d6000803e3d6000fd5b505050610f7f565b604080516370a0823160e01b815230600482015290516000916001600160a01b038616916370a0823191602480820192602092909190829003018186803b158015610ec457600080fd5b505afa158015610ed8573d6000803e3d6000fd5b505050506040513d6020811015610eee57600080fd5b5051905060008215610f0957610f0482846116db565b610f0b565b815b905060008111610f62576040805162461bcd60e51b815260206004820152601f60248201527f77534f54453a20747279696e6720746f2073656e6420302062616c616e636500604482015290519081900360640190fd5b610f7c6001600160a01b038616858363ffffffff6116f116565b50505b505050565b600061062b610f91611441565b846106b88560405180606001604052806025815260200161217e6025913960016000610fbb611441565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff6115a116565b600061062b610fff611441565b8484611531565b4290565b4690565b816001600160a01b03811630141561106d576040805162461bcd60e51b815260206004820152601b60248201527f77534f54453a2063616e206e6f742073656e6420746f2073656c660000000000604482015290519081900360640190fd5b6110773383611743565b6008546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b1580156110cd57600080fd5b505af11580156110e1573d6000803e3d6000fd5b505050506040513d60208110156110f757600080fd5b5051610f7f576040805162461bcd60e51b81526020600482015260166024820152751dd4d3d5114e881d1c985b9cd9995c8819985a5b195960521b604482015290519081900360640190fd5b8361114c611006565b111561119f576040805162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e65000000604482015290519081900360640190fd5b60006040518080611fd360529139604080519182900360520182206001600160a01b03808d16600081815260066020908152858220548188019590955286860192909252918d166060860152608085018c905260a085019290925260c08085018b90528351808603909101815260e090940190925282519201919091209250905061190161122b61183f565b83604051602001808461ffff1661ffff1660f01b81526002018381526020018281526020019350505050604051602081830303815290604052805190602001209050600061127b8287878761187e565b9050896001600160a01b0316816001600160a01b0316146112e3576040805162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e61747572650000604482015290519081900360640190fd5b6001600160a01b038a1660009081526006602052604090208054600101905561130d8a8a8a611445565b50505050505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61134e338261100e565b50565b600854604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b03909216916323b872dd916064808201926020929091908290030181600087803b1580156113ab57600080fd5b505af11580156113bf573d6000803e3d6000fd5b505050506040513d60208110156113d557600080fd5b5051611428576040805162461bcd60e51b815260206004820152601a60248201527f77534f54453a207472616e7366657246726f6d206661696c6564000000000000604482015290519081900360640190fd5b61134e33826119fc565b6008546001600160a01b031681565b3390565b6001600160a01b03831661148a5760405162461bcd60e51b81526004018080602001828103825260248152602001806121306024913960400191505060405180910390fd5b6001600160a01b0382166114cf5760405162461bcd60e51b8152600401808060200182810382526022815260200180611f466022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b816001600160a01b038116301415611590576040805162461bcd60e51b815260206004820152601b60248201527f77534f54453a2063616e206e6f742073656e6420746f2073656c660000000000604482015290519081900360640190fd5b61159b848484611aec565b50505050565b600081848411156116305760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115f55781810151838201526020016115dd565b50505050905090810190601f1680156116225780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611692576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600061169283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115a1565b60008183106116ea5781611692565b5090919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610f7f908490611c48565b6001600160a01b0382166117885760405162461bcd60e51b81526004018080602001828103825260218152602001806120c16021913960400191505060405180910390fd5b6117cb81604051806060016040528060228152602001611f24602291396001600160a01b038516600090815260208190526040902054919063ffffffff6115a116565b6001600160a01b0383166000908152602081905260409020556002546117f7908263ffffffff61169916565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6000806007600061184e61100a565b81526020810191909152604001600020549050801561186e579050610614565b611876611e00565b915050610614565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156118df5760405162461bcd60e51b8152600401808060200182810382526022815260200180611fb16022913960400191505060405180910390fd5b8360ff16601b141580156118f757508360ff16601c14155b156119335760405162461bcd60e51b81526004018080602001828103825260228152602001806120256022913960400191505060405180910390fd5b604080516000808252602080830180855289905260ff88168385015260608301879052608083018690529251909260019260a080820193601f1981019281900390910190855afa15801561198b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119f3576040805162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015290519081900360640190fd5b95945050505050565b6001600160a01b038216611a57576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611a6a908263ffffffff61163816565b6002556001600160a01b038216600090815260208190526040902054611a96908263ffffffff61163816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038316611b315760405162461bcd60e51b81526004018080602001828103825260258152602001806120e26025913960400191505060405180910390fd5b6001600160a01b038216611b765760405162461bcd60e51b8152600401808060200182810382526023815260200180611f016023913960400191505060405180910390fd5b611bb981604051806060016040528060268152602001611f8b602691396001600160a01b038616600090815260208190526040902054919063ffffffff6115a116565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611bee908263ffffffff61163816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b611c5a826001600160a01b0316611ec4565b611cab576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611ce95780518252601f199092019160209182019101611cca565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611d4b576040519150601f19603f3d011682016040523d82523d6000602084013e611d50565b606091505b509150915081611da7576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561159b57808060200190516020811015611dc357600080fd5b505161159b5760405162461bcd60e51b815260040180806020018281038252602a815260200180612154602a913960400191505060405180910390fd5b600080611e0b61100a565b9050600060405180806120476052913960520190506040518091039020611e30610580565b805160209182012060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66060840152608083018590523060a0808501919091528151808503909101815260c0909301815282519282019290922060009485526007909152922082905550905090565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611ef857508115155b94935050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737377534f54453a2063616e206e6f742073656e6420746f207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545434453413a20696e76616c6964207369676e6174757265202773272076616c75655065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e652945434453413a20696e76616c6964207369676e6174757265202776272076616c7565454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e74726163742945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737377534f54453a207468657265206973206e6f206163636964656e74616c6c792073656e7420534f544545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a72315820aceb49adb4ef66f9b33a77c9b5a051406b9c58eadb67c5c4e45a954c10dd2c4864736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b0a51d5e242b6a86420ec34660b14d8b9cd4d5fc
-----Decoded View---------------
Arg [0] : _sote (address): 0xb0a51D5E242B6A86420Ec34660b14D8B9Cd4d5fc
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b0a51d5e242b6a86420ec34660b14d8b9cd4d5fc
Deployed Bytecode Sourcemap
35107:3539:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35107:3539:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18540:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18540:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12084:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12084:152:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11105:91;;;:::i;:::-;;;;;;;;;;;;;;;;12708:304;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12708:304:0;;;;;;;;;;;;;;;;;:::i;19392:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13421:210;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13421:210:0;;;;;;;;:::i;36195:667::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36195:667:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;36195:667:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36870:557;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36870:557:0;;;;;;;;;;;;;;;;;:::i;11259:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11259:110:0;-1:-1:-1;;;;;11259:110:0;;:::i;33716:101::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33716:101:0;-1:-1:-1;;;;;33716:101:0;;:::i;18742:87::-;;;:::i;37499:1144::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37499:1144:0;;;;;;;;;;;;;;;;;:::i;:::-;;14134:261;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14134:261:0;;;;;;;;:::i;11582:158::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11582:158:0;;;;;;;;:::i;34944:97::-;;;:::i;34804:132::-;;;:::i;36000:187::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36000:187:0;;;;;;;;:::i;32920:728::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;32920:728:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;11803:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11803:134:0;;;;;;;;;;:::i;35902:90::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35902:90:0;;:::i;35706:188::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35706:188:0;;:::i;35233:17::-;;;:::i;:::-;;;;-1:-1:-1;;;;;35233:17:0;;;;;;;;;;;;;;18540:83;18610:5;18603:12;;;;;;;;-1:-1:-1;;18603:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18577:13;;18603:12;;18610:5;;18603:12;;18610:5;18603:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18540:83;;:::o;12084:152::-;12150:4;12167:39;12176:12;:10;:12::i;:::-;12190:7;12199:6;12167:8;:39::i;:::-;-1:-1:-1;12224:4:0;12084:152;;;;:::o;11105:91::-;11176:12;;11105:91;:::o;12708:304::-;12797:4;12814:36;12824:6;12832:9;12843:6;12814:9;:36::i;:::-;12861:121;12870:6;12878:12;:10;:12::i;:::-;12892:89;12930:6;12892:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12892:19:0;;;;;;:11;:19;;;;;;12912:12;:10;:12::i;:::-;-1:-1:-1;;;;;12892:33:0;;;;;;;;;;;;-1:-1:-1;12892:33:0;;;:89;;:37;:89;:::i;:::-;12861:8;:121::i;:::-;-1:-1:-1;13000:4:0;12708:304;;;;;:::o;19392:83::-;19458:9;;;;19392:83;:::o;13421:210::-;13501:4;13518:83;13527:12;:10;:12::i;:::-;13541:7;13550:50;13589:10;13550:11;:25;13562:12;:10;:12::i;:::-;-1:-1:-1;;;;;13550:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13550:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;36195:667::-;36351:4;;:37;;;-1:-1:-1;;;36351:37:0;;-1:-1:-1;;;;;36351:37:0;;;;;;;36382:4;36351:37;;;;;;36295:12;;36309:20;;36391:7;;36351:4;;;:14;;:37;;;;;;;;;;;;;;;:4;:37;;;5:2:-1;;;;30:1;27;20:12;5:2;36351:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36351:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36351:37:0;:47;36347:120;;;-1:-1:-1;;36415:40:0;;;;;;;;;;;;-1:-1:-1;;;36415:40:0;;;;36423:5;;36415:40;;36347:120;36483:4;;:22;;;-1:-1:-1;;;36483:22:0;;-1:-1:-1;;;;;36483:22:0;;;;;;;;;36508:7;;36483:4;;;;;:14;;:22;;;;;;;;;;;;;;;:4;:22;;;5:2:-1;;;;30:1;27;20:12;5:2;36483:22:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36483:22:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36483:22:0;:32;36479:108;;;-1:-1:-1;;36532:43:0;;;;;;;;;;;;;;;;;36540:5;;36532:43;;36479:108;36603:4;;:26;;;-1:-1:-1;;;36603:26:0;;-1:-1:-1;;;;;36603:26:0;;;;;;;;;36632:3;;36603:4;;;;;:18;;:26;;;;;;;;;;;;;;;:4;:26;;;5:2:-1;;;;30:1;27;20:12;5:2;36603:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36603:26:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36603:26:0;:32;36599:107;;;-1:-1:-1;;36652:42:0;;;;;;;;;;;;;;;;;36660:5;;36652:42;;36599:107;36723:4;;:31;;;-1:-1:-1;;;36723:31:0;;36748:4;36723:31;;;;;;-1:-1:-1;;;;;36723:4:0;;;;:16;;:31;;;;;;;;;;;;;;;:4;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;36723:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36723:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36723:31:0;36718:107;;-1:-1:-1;;36771:42:0;;;;;;;;;;;;;;;;;36779:5;;36771:42;;36718:107;-1:-1:-1;;36837:17:0;;;;;;;;;-1:-1:-1;36837:17:0;;36845:4;;36195:667;;;;;;:::o;36870:557::-;36992:12;37006:20;37068:7;37048:17;37058:6;37048:9;:17::i;:::-;:27;37044:104;;;-1:-1:-1;;37092:44:0;;;;;;;;;;;;;;;;;37100:5;;37092:44;;37044:104;37165:4;;:28;;;-1:-1:-1;;;37165:28:0;;-1:-1:-1;;;;;37165:28:0;;;;;;;;;:4;;;;;:16;;:28;;;;;;;;;;;;;;:4;:28;;;5:2:-1;;;;30:1;27;20:12;5:2;37165:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37165:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37165:28:0;37160:108;;-1:-1:-1;;37210:46:0;;;;;;;;;;;;;;;;;37218:5;;37210:46;;37160:108;37284:4;;:33;;;-1:-1:-1;;;37284:33:0;;37311:4;37284:33;;;;;;37320:3;;-1:-1:-1;;;;;37284:4:0;;:18;;:33;;;;;;;;;;;;;;:4;:33;;;5:2:-1;;;;30:1;27;20:12;5:2;37284:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37284:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37284:33:0;:39;37280:110;;;-1:-1:-1;;37340:38:0;;;;;;;;;;;;-1:-1:-1;;;37340:38:0;;;;37348:5;;37340:38;;37280:110;-1:-1:-1;;37402:17:0;;;;;;;;;-1:-1:-1;37402:17:0;;37410:4;;36870:557;;;;;;;:::o;11259:110::-;-1:-1:-1;;;;;11343:18:0;11316:7;11343:18;;;;;;;;;;;;11259:110::o;33716:101::-;-1:-1:-1;;;;;33795:14:0;33768:7;33795:14;;;:7;:14;;;;;;;33716:101::o;18742:87::-;18814:7;18807:14;;;;;;;;-1:-1:-1;;18807:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18781:13;;18807:14;;18814:7;;18807:14;;18814:7;18807:14;;;;;;;;;;;;;;;;;;;;;;;;37499:1144;-1:-1:-1;;;;;37601:17:0;;37593:65;;;;-1:-1:-1;;;37593:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37699:4;;-1:-1:-1;;;;;37675:30:0;;;37699:4;;37675:30;37671:965;;;37722:22;37747:50;37783:13;:11;:13::i;:::-;37747:31;;;-1:-1:-1;;;37747:31:0;;37772:4;37747:31;;;;;;-1:-1:-1;;;;;37747:16:0;;;;;:31;;;;;;;;;;;;;;:16;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;37747:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37747:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37747:31:0;;:50;:35;:50;:::i;:::-;37722:75;;37837:1;37820:14;:18;37812:72;;;;-1:-1:-1;;;37812:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37899:15;37917:13;;:67;;37950:34;37959:14;37975:8;37950;:34::i;:::-;37917:67;;;37933:14;37917:67;37899:85;-1:-1:-1;37999:33:0;-1:-1:-1;;;;;37999:19:0;;38019:3;37899:85;37999:33;:19;:33;:::i;:::-;37671:965;;;;;-1:-1:-1;;;;;38054:18:0;;38050:586;;38138:21;38115:20;38192:13;;:63;;38223:32;38232:12;38246:8;38223;:32::i;:::-;38192:63;;;38208:12;38192:63;38270:21;;38174:81;;-1:-1:-1;;;;;;38270:12:0;;;:21;;;;;38174:81;;38270:21;;;;38174:81;38270:12;:21;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38270:21:0;38050:586;;;;;38379:31;;;-1:-1:-1;;;38379:31:0;;38404:4;38379:31;;;;;;38356:20;;-1:-1:-1;;;;;38379:16:0;;;;;:31;;;;;;;;;;;;;;;:16;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;38379:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38379:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38379:31:0;;-1:-1:-1;38425:15:0;38443:13;;:63;;38474:32;38483:12;38497:8;38474;:32::i;:::-;38443:63;;;38459:12;38443:63;38425:81;;38539:1;38529:7;:11;38521:55;;;;;-1:-1:-1;;;38521:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38591:33;-1:-1:-1;;;;;38591:19:0;;38611:3;38616:7;38591:33;:19;:33;:::i;:::-;38050:586;;;37499:1144;;;:::o;14134:261::-;14219:4;14236:129;14245:12;:10;:12::i;:::-;14259:7;14268:96;14307:15;14268:96;;;;;;;;;;;;;;;;;:11;:25;14280:12;:10;:12::i;:::-;-1:-1:-1;;;;;14268:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14268:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;11582:158::-;11651:4;11668:42;11678:12;:10;:12::i;:::-;11692:9;11703:6;11668:9;:42::i;34944:97::-;35018:15;34944:97;:::o;34804:132::-;34909:9;;34882:47::o;36000:187::-;36064:3;-1:-1:-1;;;;;35315:26:0;;35336:4;35315:26;;35307:66;;;;;-1:-1:-1;;;35307:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36080:26;36086:10;36098:7;36080:5;:26::i;:::-;36125:4;;:27;;;-1:-1:-1;;;36125:27:0;;-1:-1:-1;;;;;36125:27:0;;;;;;;;;;;;;;;:4;;;;;:13;;:27;;;;;;;;;;;;;;:4;;:27;;;5:2:-1;;;;30:1;27;20:12;5:2;36125:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36125:27:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36125:27:0;36117:62;;;;;-1:-1:-1;;;36117:62:0;;;;;;;;;;;;-1:-1:-1;;;36117:62:0;;;;;;;;;;;;;;32920:728;33149:8;33129:16;:14;:16::i;:::-;:28;;33121:70;;;;;-1:-1:-1;;;33121:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33204:18;32249:111;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33302:14:0;;;;;;;:7;:14;;;;;;;;33249:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;33249:78:0;;;;;;;33225:113;;;;;;;;;-1:-1:-1;33302:14:0;-1:-1:-1;33400:6:0;33409:18;:16;:18::i;:::-;33429:10;33376:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;33376:64:0;;;33366:75;;;;;;33351:90;;33454:14;33471:28;33485:4;33491:1;33494;33497;33471:13;:28::i;:::-;33454:45;;33528:5;-1:-1:-1;;;;;33518:15:0;:6;-1:-1:-1;;;;;33518:15:0;;33510:58;;;;;-1:-1:-1;;;33510:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33581:14:0;;;;;;:7;:14;;;;;:16;;;;;;33608:32;33589:5;33624:7;33633:6;33608:8;:32::i;:::-;32920:728;;;;;;;;;;:::o;11803:134::-;-1:-1:-1;;;;;11902:18:0;;;11875:7;11902:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11803:134::o;35902:90::-;35955:29;35964:10;35976:7;35955:8;:29::i;:::-;35902:90;:::o;35706:188::-;35765:4;;:53;;;-1:-1:-1;;;35765:53:0;;35783:10;35765:53;;;;35803:4;35765:53;;;;;;;;;;;;-1:-1:-1;;;;;35765:4:0;;;;:17;;:53;;;;;;;;;;;;;;;:4;;:53;;;5:2:-1;;;;30:1;27;20:12;5:2;35765:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35765:53:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35765:53:0;35757:92;;;;;-1:-1:-1;;;35757:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35860:26;35866:10;35878:7;35860:5;:26::i;35233:17::-;;;-1:-1:-1;;;;;35233:17:0;;:::o;806:98::-;886:10;806:98;:::o;17065:338::-;-1:-1:-1;;;;;17159:19:0;;17151:68;;;;-1:-1:-1;;;17151:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17238:21:0;;17230:68;;;;-1:-1:-1;;;17230:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17311:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17363:32;;;;;;;;;;;;;;;;;17065:338;;;:::o;35515:183::-;35621:9;-1:-1:-1;;;;;35315:26:0;;35336:4;35315:26;;35307:66;;;;;-1:-1:-1;;;35307:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35648:42;35664:6;35672:9;35683:6;35648:15;:42::i;:::-;35515:183;;;;:::o;5866:192::-;5952:7;5988:12;5980:6;;;;5972:29;;;;-1:-1:-1;;;5972:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5972:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6024:5:0;;;5866:192::o;4937:181::-;4995:7;5027:5;;;5051:6;;;;5043:46;;;;;-1:-1:-1;;;5043:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;5109:1;4937:181;-1:-1:-1;;;4937:181:0:o;5393:136::-;5451:7;5478:43;5482:1;5485;5478:43;;;;;;;;;;;;;;;;;:3;:43::i;19906:106::-;19964:7;19995:1;19991;:5;:13;;20003:1;19991:13;;;-1:-1:-1;19999:1:0;;19906:106;-1:-1:-1;19906:106:0:o;24064:176::-;24173:58;;;-1:-1:-1;;;;;24173:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;24173:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;24147:85:0;;24166:5;;24147:18;:85::i;16277:348::-;-1:-1:-1;;;;;16353:21:0;;16345:67;;;;-1:-1:-1;;;16345:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16446:68;16469:6;16446:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16446:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;16425:18:0;;:9;:18;;;;;;;;;;:89;16540:12;;:24;;16557:6;16540:24;:16;:24;:::i;:::-;16525:12;:39;16580:37;;;;;;;;16606:1;;-1:-1:-1;;;;;16580:37:0;;;;;;;;;;;;16277:348;;:::o;34517:279::-;34562:7;34582:23;34608:17;:28;34626:9;:7;:9::i;:::-;34608:28;;;;;;;;;;;-1:-1:-1;34608:28:0;;;-1:-1:-1;34651:23:0;;34647:142;;34698:15;-1:-1:-1;34691:22:0;;34647:142;34753:24;:22;:24::i;:::-;34746:31;;;;;29555:1491;29640:7;30560:66;30547:79;;30543:156;;;30643:44;;-1:-1:-1;;;30643:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30543:156;30715:1;:7;;30720:2;30715:7;;:18;;;;;30726:1;:7;;30731:2;30726:7;;30715:18;30711:95;;;30750:44;;-1:-1:-1;;;30750:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30711:95;30920:24;;;30903:14;30920:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30903:14;;30920:24;;;;;;;-1:-1:-1;;30920:24:0;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;30920:24:0;;-1:-1:-1;;30920:24:0;;;-1:-1:-1;;;;;;;30963:20:0;;30955:57;;;;;-1:-1:-1;;;30955:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;31032:6;29555:1491;-1:-1:-1;;;;;29555:1491:0:o;15637:308::-;-1:-1:-1;;;;;15713:21:0;;15705:65;;;;;-1:-1:-1;;;15705:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15798:12;;:24;;15815:6;15798:24;:16;:24;:::i;:::-;15783:12;:39;-1:-1:-1;;;;;15854:18:0;;:9;:18;;;;;;;;;;;:30;;15877:6;15854:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;15833:18:0;;:9;:18;;;;;;;;;;;:51;;;;15900:37;;;;;;;15833:18;;:9;;15900:37;;;;;;;;;;15637:308;;:::o;14885:471::-;-1:-1:-1;;;;;14983:20:0;;14975:70;;;;-1:-1:-1;;;14975:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15064:23:0;;15056:71;;;;-1:-1:-1;;;15056:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15160;15182:6;15160:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15160:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;15140:17:0;;;:9;:17;;;;;;;;;;;:91;;;;15265:20;;;;;;;:32;;15290:6;15265:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;15242:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15313:35;;;;;;;15242:20;;15313:35;;;;;;;;;;;;;14885:471;;;:::o;26103:1114::-;26707:27;26715:5;-1:-1:-1;;;;;26707:25:0;;:27::i;:::-;26699:71;;;;;-1:-1:-1;;;26699:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;26844:12;26858:23;26893:5;-1:-1:-1;;;;;26885:19:0;26905:4;26885:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;26885:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;26843:67:0;;;;26929:7;26921:52;;;;;-1:-1:-1;;;26921:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26990:17;;:21;26986:224;;27132:10;27121:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27121:30:0;27113:85;;;;-1:-1:-1;;;27113:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33825:615;33876:7;33896:16;33915:9;:7;:9::i;:::-;33896:28;;33937:26;34019:135;;;;;;;;;;;;;;;;;;;34189:6;:4;:6::i;:::-;34173:24;;;;;;;34226:10;;;;;;;;;;;-1:-1:-1;;;34226:10:0;;;;33990:332;;;;;;;;;;;;;;;;34216:21;33990:332;;;;;;;;;;34302:4;33990:332;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;33990:332:0;;;;;;33966:367;;;;;;;;;-1:-1:-1;34346:27:0;;;:17;:27;;;;;:48;;;-1:-1:-1;33966:367:0;-1:-1:-1;33825:615:0;:::o;21093:619::-;21153:4;21621:20;;21464:66;21661:23;;;;;;:42;;-1:-1:-1;21688:15:0;;;21661:42;21653:51;21093:619;-1:-1:-1;;;;21093:619:0:o
Swarm Source
bzzr://aceb49adb4ef66f9b33a77c9b5a051406b9c58eadb67c5c4e45a954c10dd2c48
Loading...
Loading
Loading...
Loading
OVERVIEW
Soteria Finance is a blockchain based mutual / cover for defi project. Token users will be able to purchase Bakery cover, stake for rewards, or stake for claims assessment.Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.