Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 730 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Leave | 11375023 | 1478 days ago | IN | 0 ETH | 0.00164559 | ||||
Leave | 11374465 | 1478 days ago | IN | 0 ETH | 0.00315506 | ||||
Leave | 11367465 | 1479 days ago | IN | 0 ETH | 0.01208118 | ||||
Withdraw Stake | 11367353 | 1479 days ago | IN | 0 ETH | 0.00446018 | ||||
Transfer | 11327796 | 1486 days ago | IN | 0 ETH | 0.00206397 | ||||
Request Staking ... | 11321630 | 1486 days ago | IN | 0 ETH | 0.00688199 | ||||
Withdraw Rewards | 11317046 | 1487 days ago | IN | 0 ETH | 0.00737213 | ||||
Submit Mining So... | 11316460 | 1487 days ago | IN | 0 ETH | 0.00098234 | ||||
Submit Mining So... | 11313215 | 1488 days ago | IN | 0 ETH | 0.11115523 | ||||
Submit Mining So... | 11313153 | 1488 days ago | IN | 0 ETH | 0.11478098 | ||||
Submit Mining So... | 11313105 | 1488 days ago | IN | 0 ETH | 0.07572182 | ||||
Submit Mining So... | 11313070 | 1488 days ago | IN | 0 ETH | 0.00173932 | ||||
Submit Mining So... | 11312965 | 1488 days ago | IN | 0 ETH | 0.03884743 | ||||
Submit Mining So... | 11312962 | 1488 days ago | IN | 0 ETH | 0.00135802 | ||||
Submit Mining So... | 11312957 | 1488 days ago | IN | 0 ETH | 0.00275405 | ||||
Submit Mining So... | 11312878 | 1488 days ago | IN | 0 ETH | 0.08452374 | ||||
Submit Mining So... | 11312876 | 1488 days ago | IN | 0 ETH | 0.00183875 | ||||
Submit Mining So... | 11312869 | 1488 days ago | IN | 0 ETH | 0.00231623 | ||||
Submit Mining So... | 11312805 | 1488 days ago | IN | 0 ETH | 0.00237398 | ||||
Submit Mining So... | 11312694 | 1488 days ago | IN | 0 ETH | 0.01463959 | ||||
Submit Mining So... | 11312667 | 1488 days ago | IN | 0 ETH | 0.00143254 | ||||
Submit Mining So... | 11312578 | 1488 days ago | IN | 0 ETH | 0.12357123 | ||||
Submit Mining So... | 11312575 | 1488 days ago | IN | 0 ETH | 0.00200079 | ||||
Submit Mining So... | 11312485 | 1488 days ago | IN | 0 ETH | 0.00879453 | ||||
Submit Mining So... | 11312481 | 1488 days ago | IN | 0 ETH | 0.00098234 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
TellorProxy
Compiler Version
v0.6.8+commit.0bbfe453
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-03 */ // File: contracts/ChiGasSaver.sol pragma solidity >=0.4.22 <0.8.0; interface IFreeFromUpTo { function freeFromUpTo(address from, uint256 value) external returns(uint256 freed); } contract ChiGasSaver { modifier saveGas(address payable sponsor, address chiToken) { uint256 gasStart = gasleft(); _; uint256 gasSpent = 21000 + gasStart - gasleft() + 16 * msg.data.length; IFreeFromUpTo chi = IFreeFromUpTo(chiToken); chi.freeFromUpTo(sponsor, (gasSpent + 14154) / 41947); } } // File: @openzeppelin/contracts/GSN/Context.sol /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: contracts/TellorProxy.sol interface ITellor { function addTip(uint256 _requestId, uint256 _tip) external; function submitMiningSolution(string calldata _nonce, uint256 _requestId, uint256 _value) external; function submitMiningSolution(string calldata _nonce,uint256[5] calldata _requestId, uint256[5] calldata _value) external; function depositStake() external; function requestStakingWithdraw() external; function withdrawStake() external; function vote(uint256 _disputeId, bool _supportsDispute) external; } contract TellorProxy is ChiGasSaver, Ownable, ERC20 { address tellorAddress; // Address of Tellor Oracle address gasToken; // Gas token address to use for gas saver uint256 stakedAt; // Timestamp when the stake was deposited uint256 unstakedAt; // Timestamp when the stake was withdrawn uint256 fee; // Fee that stakers collect, where 100 is 1% uint256 stakeAmount; // The Tellor token staking amount uint256 feesCollected; // The fees collected for the stakers constructor(address _tellorAddress, address _gasToken, uint256 _fee, uint256 _stakeAmount) public // NOTE: Change the token name and symbol for each staked miner // Use the form: TPS-YYYYMMDD // Where YYYY == year, MM == month, and DD = day the token is redeamable ERC20("Tellorpool Token - 2020-12-27", "TPS-20201227") { tellorAddress = _tellorAddress; gasToken = _gasToken; fee = _fee; stakeAmount = _stakeAmount * 1e18; feesCollected = 0; } // Enter the contract, get TPS for your TRB function enter(uint256 _amount) public { require(IERC20(tellorAddress).transferFrom(msg.sender, address(this), _amount)); _mint(msg.sender, _amount); require(totalSupply() <= stakeAmount, "CAN NOT ACCEPT MORE THAN STAKE AMOUNT"); } // Leave the contract, get TRB for your TPS function leave() public { // Can only leave after the contract has been unstaked or before staking require(unstakedAt != 0 || stakedAt == 0, "NOT UNSTAKED YET"); uint256 totalTRB = IERC20(tellorAddress).balanceOf(address(this)); uint256 totalShares = totalSupply(); uint256 theirShares = balanceOf(msg.sender); uint256 theirTRB = totalTRB.mul(theirShares).div(totalShares); _burn(msg.sender, theirShares); require(IERC20(tellorAddress).transfer(msg.sender, theirTRB)); } // Close the contract, send remaining balance to owner function close() external onlyOwner { // Can only close after being unstaked for 90 days // or after 365 days from staking (in case of dispute) require((unstakedAt < now - 90 days && unstakedAt != 0) || (stakedAt < now - 365 days && stakedAt != 0), "CAN NOT CLOSE YET"); uint256 leftovers = IERC20(tellorAddress).balanceOf(address(this)); require(IERC20(tellorAddress).transfer(owner(), leftovers)); } // Withdraw rewards less fees function withdrawRewards() external onlyOwner { require(unstakedAt == 0, "NO WITHDRAWS AFTER UNSTAKING"); require(stakedAt != 0, "NO WITHDRAWS BEFORE STAKING"); uint256 surplus = IERC20(tellorAddress).balanceOf(address(this)) - stakeAmount - feesCollected; uint256 available = surplus.mul(10000 - fee).div(10000); feesCollected += surplus - available; require(IERC20(tellorAddress).transfer(owner(), available)); } // Returns the TRB value of the token with 5 decimals of percision function getTokenValue() external view returns (uint256) { if (stakedAt != 0) { return (stakeAmount + feesCollected).mul(100000).div(totalSupply()); } else { return 100000; } } // Returns the fee as a percentage with 2 decimals of percision function getFee() external view returns (uint256) { return fee; } // Withdraw for other tokens if not Tellor function tokenWithdraw(address _tokenAddress, uint256 _amount) external onlyOwner { require(_tokenAddress != tellorAddress, "CAN NOT WITHDRAW TRB"); require(IERC20(_tokenAddress).transfer(owner(), _amount)); } function addTip(uint256 _requestId, uint256 _tip) external onlyOwner saveGas(msg.sender, gasToken) { ITellor(tellorAddress).addTip(_requestId, _tip); } function submitMiningSolutionSaveGas(string calldata _nonce, uint256 _requestId, uint256 _value) external onlyOwner saveGas(msg.sender, gasToken) { ITellor(tellorAddress).submitMiningSolution(_nonce, _requestId, _value); } function submitMiningSolutionSaveGas(string calldata _nonce, uint256[5] calldata _requestId, uint256[5] calldata _value) external onlyOwner saveGas(msg.sender, gasToken) { ITellor(tellorAddress).submitMiningSolution(_nonce, _requestId, _value); } function submitMiningSolution(string calldata _nonce, uint256 _requestId, uint256 _value) external onlyOwner { ITellor(tellorAddress).submitMiningSolution(_nonce, _requestId, _value); } function submitMiningSolution(string calldata _nonce, uint256[5] calldata _requestId, uint256[5] calldata _value) external onlyOwner { ITellor(tellorAddress).submitMiningSolution(_nonce, _requestId, _value); } function depositStake() external onlyOwner { stakedAt = now; ITellor(tellorAddress).depositStake(); } function requestStakingWithdraw() external onlyOwner { ITellor(tellorAddress).requestStakingWithdraw(); } function withdrawStake() external onlyOwner { unstakedAt = now; ITellor(tellorAddress).withdrawStake(); } function vote(uint256 _disputeId, bool _supportsDispute) external onlyOwner { ITellor(tellorAddress).vote(_disputeId, _supportsDispute); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_tellorAddress","type":"address"},{"internalType":"address","name":"_gasToken","type":"address"},{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"uint256","name":"_stakeAmount","type":"uint256"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_requestId","type":"uint256"},{"internalType":"uint256","name":"_tip","type":"uint256"}],"name":"addTip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"close","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"depositStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"enter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"leave","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestStakingWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_nonce","type":"string"},{"internalType":"uint256[5]","name":"_requestId","type":"uint256[5]"},{"internalType":"uint256[5]","name":"_value","type":"uint256[5]"}],"name":"submitMiningSolution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_nonce","type":"string"},{"internalType":"uint256","name":"_requestId","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"submitMiningSolution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_nonce","type":"string"},{"internalType":"uint256","name":"_requestId","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"submitMiningSolutionSaveGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_nonce","type":"string"},{"internalType":"uint256[5]","name":"_requestId","type":"uint256[5]"},{"internalType":"uint256[5]","name":"_value","type":"uint256[5]"}],"name":"submitMiningSolutionSaveGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"tokenWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_disputeId","type":"uint256"},{"internalType":"bool","name":"_supportsDispute","type":"bool"}],"name":"vote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStake","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620027e1380380620027e1833981810160405260808110156200003757600080fd5b50805160208083015160408085015160609095015181518083018352601d81527f54656c6c6f72706f6f6c20546f6b656e202d20323032302d31322d3237000000818601528251808401909352600c83526b5450532d323032303132323760a01b94830194909452939491939192906000620000bb6001600160e01b036200019416565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200011a90600490602085019062000199565b5080516200013090600590602084019062000199565b505060068054601260ff1990911617610100600160a81b0319166101006001600160a01b039788160217905550600780546001600160a01b0319169390941692909217909255600a91909155670de0b6b3a764000002600b556000600c556200023b565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001dc57805160ff19168380011785556200020c565b828001600101855582156200020c579182015b828111156200020c578251825591602001919060010190620001ef565b506200021a9291506200021e565b5090565b6200019691905b808211156200021a576000815560010162000225565b612596806200024b6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063752d49a111610104578063bed9d861116100a2578063ced72f8711610071578063ced72f8714610677578063d66d9e191461067f578063dd62ed3e14610687578063f2fde38b146106b5576101da565b8063bed9d861146105d0578063c2f8b167146105d8578063c7b8981c1461064a578063c9d27afe14610652576101da565b8063a457c2d7116100de578063a457c2d71461052f578063a59f3e0c1461055b578063a9059cbb14610578578063be50af2e146105a4576101da565b8063752d49a1146104e05780638da5cb5b1461050357806395d89b4114610527576101da565b806328449c3a1161017c57806343d726d61161014b57806343d726d61461043657806368c180d51461043e57806370a08231146104b2578063715018a6146104d8576101da565b806328449c3a14610372578063313ce5671461037a57806339509351146103985780634350283e146103c4576101da565b80630a844879116101b85780630a844879146102b65780630d2d76a21461032c57806318160ddd1461033457806323b872dd1461033c576101da565b806306fdde03146101df57806306ffce531461025c578063095ea7b314610276575b600080fd5b6101e76106db565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610221578181015183820152602001610209565b50505050905090810190601f16801561024e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610264610772565b60408051918252519081900360200190f35b6102a26004803603604081101561028c57600080fd5b506001600160a01b0381351690602001356107c0565b604080519115158252519081900360200190f35b61032a600480360360608110156102cc57600080fd5b810190602081018135600160201b8111156102e657600080fd5b8201836020820111156102f857600080fd5b803590602001918460018302840111600160201b8311171561031957600080fd5b9193509150803590602001356107de565b005b61032a6109b5565b610264610a7e565b6102a26004803603606081101561035257600080fd5b506001600160a01b03813581169160208101359091169060400135610a84565b61032a610b11565b610382610bb9565b6040805160ff9092168252519081900360200190f35b6102a2600480360360408110156103ae57600080fd5b506001600160a01b038135169060200135610bc2565b61032a60048036036101608110156103db57600080fd5b810190602081018135600160201b8111156103f557600080fd5b82018360208201111561040757600080fd5b803590602001918460018302840111600160201b8311171561042857600080fd5b919350915060a08101610c16565b61032a610d49565b61032a6004803603606081101561045457600080fd5b810190602081018135600160201b81111561046e57600080fd5b82018360208201111561048057600080fd5b803590602001918460018302840111600160201b831117156104a157600080fd5b919350915080359060200135610f40565b610264600480360360208110156104c857600080fd5b50356001600160a01b031661102f565b61032a61104a565b61032a600480360360408110156104f657600080fd5b50803590602001356110ec565b61050b61128d565b604080516001600160a01b039092168252519081900360200190f35b6101e761129c565b6102a26004803603604081101561054557600080fd5b506001600160a01b0381351690602001356112fd565b61032a6004803603602081101561057157600080fd5b503561136b565b6102a26004803603604081101561058e57600080fd5b506001600160a01b038135169060200135611450565b61032a600480360360408110156105ba57600080fd5b506001600160a01b038135169060200135611464565b61032a6115bb565b61032a60048036036101608110156105ef57600080fd5b810190602081018135600160201b81111561060957600080fd5b82018360208201111561061b57600080fd5b803590602001918460018302840111600160201b8311171561063c57600080fd5b919350915060a0810161166a565b61032a611788565b61032a6004803603604081101561066857600080fd5b50803590602001351515611962565b610264611a2f565b61032a611a35565b6102646004803603604081101561069d57600080fd5b506001600160a01b0381358116916020013516611bcf565b61032a600480360360208110156106cb57600080fd5b50356001600160a01b0316611bfa565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107675780601f1061073c57610100808354040283529160200191610767565b820191906000526020600020905b81548152906001019060200180831161074a57829003601f168201915b505050505090505b90565b60006008546000146107b6576107af610789610a7e565b600c54600b546107a39101620186a063ffffffff611cf216565b9063ffffffff611d5216565b905061076f565b50620186a061076f565b60006107d46107cd611d94565b8484611d98565b5060015b92915050565b6107e6611d94565b6000546001600160a01b03908116911614610836576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b60075433906001600160a01b031660005a9050600660019054906101000a90046001600160a01b03166001600160a01b03166368c180d5888888886040518563ffffffff1660e01b815260040180806020018481526020018381526020018281038252868682818152602001925080828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b1580156108e057600080fd5b505af11580156108f4573d6000803e3d6000fd5b5060009250506010360290505a8361520801030190506000839050806001600160a01b031663079d229f8661a3db8561374a018161092e57fe5b046040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561097e57600080fd5b505af1158015610992573d6000803e3d6000fd5b505050506040513d60208110156109a857600080fd5b5050505050505050505050565b6109bd611d94565b6000546001600160a01b03908116911614610a0d576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b42600881905550600660019054906101000a90046001600160a01b03166001600160a01b0316630d2d76a26040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6457600080fd5b505af1158015610a78573d6000803e3d6000fd5b50505050565b60035490565b6000610a91848484611e84565b610b0784610a9d611d94565b610b028560405180606001604052806028815260200161248a602891396001600160a01b038a16600090815260026020526040812090610adb611d94565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611fed16565b611d98565b5060019392505050565b610b19611d94565b6000546001600160a01b03908116911614610b69576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b600660019054906101000a90046001600160a01b03166001600160a01b03166328449c3a6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6457600080fd5b60065460ff1690565b60006107d4610bcf611d94565b84610b028560026000610be0611d94565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61208416565b610c1e611d94565b6000546001600160a01b03908116911614610c6e576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b600660019054906101000a90046001600160a01b03166001600160a01b0316634350283e858585856040518563ffffffff1660e01b8152600401808060200184600560200280828437600083820152601f01601f191690910190508360a080828437600083820152601f01601f191690910183810383528681526020019050868680828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b158015610d2b57600080fd5b505af1158015610d3f573d6000803e3d6000fd5b5050505050505050565b610d51611d94565b6000546001600160a01b03908116911614610da1576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b6276a7004203600954108015610db8575060095415155b80610dd657506301e133804203600854108015610dd6575060085415155b610e1b576040805162461bcd60e51b815260206004820152601160248201527010d053881393d50810d313d4d148165155607a1b604482015290519081900360640190fd5b600654604080516370a0823160e01b8152306004820152905160009261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610e6b57600080fd5b505afa158015610e7f573d6000803e3d6000fd5b505050506040513d6020811015610e9557600080fd5b505160065490915061010090046001600160a01b031663a9059cbb610eb861128d565b836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610f0857600080fd5b505af1158015610f1c573d6000803e3d6000fd5b505050506040513d6020811015610f3257600080fd5b5051610f3d57600080fd5b50565b610f48611d94565b6000546001600160a01b03908116911614610f98576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b600660019054906101000a90046001600160a01b03166001600160a01b03166368c180d5858585856040518563ffffffff1660e01b815260040180806020018481526020018381526020018281038252868682818152602001925080828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b158015610d2b57600080fd5b6001600160a01b031660009081526001602052604090205490565b611052611d94565b6000546001600160a01b039081169116146110a2576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6110f4611d94565b6000546001600160a01b03908116911614611144576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b60075433906001600160a01b031660005a9050600660019054906101000a90046001600160a01b03166001600160a01b031663752d49a186866040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b1580156111ba57600080fd5b505af11580156111ce573d6000803e3d6000fd5b5060009250506010360290505a8361520801030190506000839050806001600160a01b031663079d229f8661a3db8561374a018161120857fe5b046040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561125857600080fd5b505af115801561126c573d6000803e3d6000fd5b505050506040513d602081101561128257600080fd5b505050505050505050565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107675780601f1061073c57610100808354040283529160200191610767565b60006107d461130a611d94565b84610b028560405180606001604052806025815260200161253c6025913960026000611334611d94565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611fed16565b600654604080516323b872dd60e01b81523360048201523060248201526044810184905290516101009092046001600160a01b0316916323b872dd916064808201926020929091908290030181600087803b1580156113c957600080fd5b505af11580156113dd573d6000803e3d6000fd5b505050506040513d60208110156113f357600080fd5b50516113fe57600080fd5b61140833826120de565b600b54611413610a7e565b1115610f3d5760405162461bcd60e51b815260040180806020018281038252602581526020018061241e6025913960400191505060405180910390fd5b60006107d461145d611d94565b8484611e84565b61146c611d94565b6000546001600160a01b039081169116146114bc576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b6006546001600160a01b0383811661010090920416141561151b576040805162461bcd60e51b815260206004820152601460248201527321a0a7102727aa102ba4aa24222920ab902a292160611b604482015290519081900360640190fd5b816001600160a01b031663a9059cbb61153261128d565b836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561158257600080fd5b505af1158015611596573d6000803e3d6000fd5b505050506040513d60208110156115ac57600080fd5b50516115b757600080fd5b5050565b6115c3611d94565b6000546001600160a01b03908116911614611613576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b42600981905550600660019054906101000a90046001600160a01b03166001600160a01b031663bed9d8616040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6457600080fd5b611672611d94565b6000546001600160a01b039081169116146116c2576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b60075433906001600160a01b031660005a6006546040516321a8141f60e11b815291925061010090046001600160a01b031690634350283e908990899089908990600481019081906024018460a080828437600083820152601f01601f191690910190508360a080828437600083820152601f01601f191690910183810383528681526020019050868680828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b1580156108e057600080fd5b611790611d94565b6000546001600160a01b039081169116146117e0576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b60095415611835576040805162461bcd60e51b815260206004820152601c60248201527f4e4f2057495448445241575320414654455220554e5354414b494e4700000000604482015290519081900360640190fd5b600854611889576040805162461bcd60e51b815260206004820152601b60248201527f4e4f20574954484452415753204245464f5245205354414b494e470000000000604482015290519081900360640190fd5b600c54600b54600654604080516370a0823160e01b81523060048201529051600094939261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156118e157600080fd5b505afa1580156118f5573d6000803e3d6000fd5b505050506040513d602081101561190b57600080fd5b5051600a5491900391909103915060009061193790612710906107a3908590830363ffffffff611cf216565b600c805482850301905560065490915061010090046001600160a01b031663a9059cbb61153261128d565b61196a611d94565b6000546001600160a01b039081169116146119ba576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b600654604080516364e93d7f60e11b815260048101859052831515602482015290516101009092046001600160a01b03169163c9d27afe9160448082019260009290919082900301818387803b158015611a1357600080fd5b505af1158015611a27573d6000803e3d6000fd5b505050505050565b600a5490565b600954151580611a455750600854155b611a89576040805162461bcd60e51b815260206004820152601060248201526f1393d508155394d51052d1510816515560821b604482015290519081900360640190fd5b600654604080516370a0823160e01b8152306004820152905160009261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611ad957600080fd5b505afa158015611aed573d6000803e3d6000fd5b505050506040513d6020811015611b0357600080fd5b505190506000611b11610a7e565b90506000611b1e3361102f565b90506000611b36836107a3868563ffffffff611cf216565b9050611b4233836121dc565b6006546040805163a9059cbb60e01b81523360048201526024810184905290516101009092046001600160a01b03169163a9059cbb916044808201926020929091908290030181600087803b158015611b9a57600080fd5b505af1158015611bae573d6000803e3d6000fd5b505050506040513d6020811015611bc457600080fd5b5051610a7857600080fd5b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b611c02611d94565b6000546001600160a01b03908116911614611c52576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b6001600160a01b038116611c975760405162461bcd60e51b81526004018080602001828103825260268152602001806123d66026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082611d01575060006107d8565b82820282848281611d0e57fe5b0414611d4b5760405162461bcd60e51b81526004018080602001828103825260218152602001806124696021913960400191505060405180910390fd5b9392505050565b6000611d4b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122e4565b3390565b6001600160a01b038316611ddd5760405162461bcd60e51b81526004018080602001828103825260248152602001806125186024913960400191505060405180910390fd5b6001600160a01b038216611e225760405162461bcd60e51b81526004018080602001828103825260228152602001806123fc6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ec95760405162461bcd60e51b81526004018080602001828103825260258152602001806124f36025913960400191505060405180910390fd5b6001600160a01b038216611f0e5760405162461bcd60e51b81526004018080602001828103825260238152602001806123916023913960400191505060405180910390fd5b611f19838383612349565b611f5c81604051806060016040528060268152602001612443602691396001600160a01b038616600090815260016020526040902054919063ffffffff611fed16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611f91908263ffffffff61208416565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561207c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612041578181015183820152602001612029565b50505050905090810190601f16801561206e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611d4b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612139576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61214560008383612349565b600354612158908263ffffffff61208416565b6003556001600160a01b038216600090815260016020526040902054612184908263ffffffff61208416565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166122215760405162461bcd60e51b81526004018080602001828103825260218152602001806124d26021913960400191505060405180910390fd5b61222d82600083612349565b612270816040518060600160405280602281526020016123b4602291396001600160a01b038516600090815260016020526040902054919063ffffffff611fed16565b6001600160a01b03831660009081526001602052604090205560035461229c908263ffffffff61234e16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600081836123335760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612041578181015183820152602001612029565b50600083858161233f57fe5b0495945050505050565b505050565b6000611d4b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611fed56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343414e204e4f5420414343455054204d4f5245205448414e205354414b4520414d4f554e5445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220627308012c16b3193126eec25ace0db70038a17b9d67b778362c3770845f09dd64736f6c634300060800330000000000000000000000000ba45a8b5d5575935b8158a88c631e9f9c95a2e50000000000000000000000000000000000004946c0e9f43f4dee607b0ef1fa1c000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000001f4
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063752d49a111610104578063bed9d861116100a2578063ced72f8711610071578063ced72f8714610677578063d66d9e191461067f578063dd62ed3e14610687578063f2fde38b146106b5576101da565b8063bed9d861146105d0578063c2f8b167146105d8578063c7b8981c1461064a578063c9d27afe14610652576101da565b8063a457c2d7116100de578063a457c2d71461052f578063a59f3e0c1461055b578063a9059cbb14610578578063be50af2e146105a4576101da565b8063752d49a1146104e05780638da5cb5b1461050357806395d89b4114610527576101da565b806328449c3a1161017c57806343d726d61161014b57806343d726d61461043657806368c180d51461043e57806370a08231146104b2578063715018a6146104d8576101da565b806328449c3a14610372578063313ce5671461037a57806339509351146103985780634350283e146103c4576101da565b80630a844879116101b85780630a844879146102b65780630d2d76a21461032c57806318160ddd1461033457806323b872dd1461033c576101da565b806306fdde03146101df57806306ffce531461025c578063095ea7b314610276575b600080fd5b6101e76106db565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610221578181015183820152602001610209565b50505050905090810190601f16801561024e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610264610772565b60408051918252519081900360200190f35b6102a26004803603604081101561028c57600080fd5b506001600160a01b0381351690602001356107c0565b604080519115158252519081900360200190f35b61032a600480360360608110156102cc57600080fd5b810190602081018135600160201b8111156102e657600080fd5b8201836020820111156102f857600080fd5b803590602001918460018302840111600160201b8311171561031957600080fd5b9193509150803590602001356107de565b005b61032a6109b5565b610264610a7e565b6102a26004803603606081101561035257600080fd5b506001600160a01b03813581169160208101359091169060400135610a84565b61032a610b11565b610382610bb9565b6040805160ff9092168252519081900360200190f35b6102a2600480360360408110156103ae57600080fd5b506001600160a01b038135169060200135610bc2565b61032a60048036036101608110156103db57600080fd5b810190602081018135600160201b8111156103f557600080fd5b82018360208201111561040757600080fd5b803590602001918460018302840111600160201b8311171561042857600080fd5b919350915060a08101610c16565b61032a610d49565b61032a6004803603606081101561045457600080fd5b810190602081018135600160201b81111561046e57600080fd5b82018360208201111561048057600080fd5b803590602001918460018302840111600160201b831117156104a157600080fd5b919350915080359060200135610f40565b610264600480360360208110156104c857600080fd5b50356001600160a01b031661102f565b61032a61104a565b61032a600480360360408110156104f657600080fd5b50803590602001356110ec565b61050b61128d565b604080516001600160a01b039092168252519081900360200190f35b6101e761129c565b6102a26004803603604081101561054557600080fd5b506001600160a01b0381351690602001356112fd565b61032a6004803603602081101561057157600080fd5b503561136b565b6102a26004803603604081101561058e57600080fd5b506001600160a01b038135169060200135611450565b61032a600480360360408110156105ba57600080fd5b506001600160a01b038135169060200135611464565b61032a6115bb565b61032a60048036036101608110156105ef57600080fd5b810190602081018135600160201b81111561060957600080fd5b82018360208201111561061b57600080fd5b803590602001918460018302840111600160201b8311171561063c57600080fd5b919350915060a0810161166a565b61032a611788565b61032a6004803603604081101561066857600080fd5b50803590602001351515611962565b610264611a2f565b61032a611a35565b6102646004803603604081101561069d57600080fd5b506001600160a01b0381358116916020013516611bcf565b61032a600480360360208110156106cb57600080fd5b50356001600160a01b0316611bfa565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107675780601f1061073c57610100808354040283529160200191610767565b820191906000526020600020905b81548152906001019060200180831161074a57829003601f168201915b505050505090505b90565b60006008546000146107b6576107af610789610a7e565b600c54600b546107a39101620186a063ffffffff611cf216565b9063ffffffff611d5216565b905061076f565b50620186a061076f565b60006107d46107cd611d94565b8484611d98565b5060015b92915050565b6107e6611d94565b6000546001600160a01b03908116911614610836576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b60075433906001600160a01b031660005a9050600660019054906101000a90046001600160a01b03166001600160a01b03166368c180d5888888886040518563ffffffff1660e01b815260040180806020018481526020018381526020018281038252868682818152602001925080828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b1580156108e057600080fd5b505af11580156108f4573d6000803e3d6000fd5b5060009250506010360290505a8361520801030190506000839050806001600160a01b031663079d229f8661a3db8561374a018161092e57fe5b046040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561097e57600080fd5b505af1158015610992573d6000803e3d6000fd5b505050506040513d60208110156109a857600080fd5b5050505050505050505050565b6109bd611d94565b6000546001600160a01b03908116911614610a0d576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b42600881905550600660019054906101000a90046001600160a01b03166001600160a01b0316630d2d76a26040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6457600080fd5b505af1158015610a78573d6000803e3d6000fd5b50505050565b60035490565b6000610a91848484611e84565b610b0784610a9d611d94565b610b028560405180606001604052806028815260200161248a602891396001600160a01b038a16600090815260026020526040812090610adb611d94565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611fed16565b611d98565b5060019392505050565b610b19611d94565b6000546001600160a01b03908116911614610b69576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b600660019054906101000a90046001600160a01b03166001600160a01b03166328449c3a6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6457600080fd5b60065460ff1690565b60006107d4610bcf611d94565b84610b028560026000610be0611d94565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61208416565b610c1e611d94565b6000546001600160a01b03908116911614610c6e576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b600660019054906101000a90046001600160a01b03166001600160a01b0316634350283e858585856040518563ffffffff1660e01b8152600401808060200184600560200280828437600083820152601f01601f191690910190508360a080828437600083820152601f01601f191690910183810383528681526020019050868680828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b158015610d2b57600080fd5b505af1158015610d3f573d6000803e3d6000fd5b5050505050505050565b610d51611d94565b6000546001600160a01b03908116911614610da1576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b6276a7004203600954108015610db8575060095415155b80610dd657506301e133804203600854108015610dd6575060085415155b610e1b576040805162461bcd60e51b815260206004820152601160248201527010d053881393d50810d313d4d148165155607a1b604482015290519081900360640190fd5b600654604080516370a0823160e01b8152306004820152905160009261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610e6b57600080fd5b505afa158015610e7f573d6000803e3d6000fd5b505050506040513d6020811015610e9557600080fd5b505160065490915061010090046001600160a01b031663a9059cbb610eb861128d565b836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610f0857600080fd5b505af1158015610f1c573d6000803e3d6000fd5b505050506040513d6020811015610f3257600080fd5b5051610f3d57600080fd5b50565b610f48611d94565b6000546001600160a01b03908116911614610f98576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b600660019054906101000a90046001600160a01b03166001600160a01b03166368c180d5858585856040518563ffffffff1660e01b815260040180806020018481526020018381526020018281038252868682818152602001925080828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b158015610d2b57600080fd5b6001600160a01b031660009081526001602052604090205490565b611052611d94565b6000546001600160a01b039081169116146110a2576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6110f4611d94565b6000546001600160a01b03908116911614611144576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b60075433906001600160a01b031660005a9050600660019054906101000a90046001600160a01b03166001600160a01b031663752d49a186866040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b1580156111ba57600080fd5b505af11580156111ce573d6000803e3d6000fd5b5060009250506010360290505a8361520801030190506000839050806001600160a01b031663079d229f8661a3db8561374a018161120857fe5b046040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561125857600080fd5b505af115801561126c573d6000803e3d6000fd5b505050506040513d602081101561128257600080fd5b505050505050505050565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107675780601f1061073c57610100808354040283529160200191610767565b60006107d461130a611d94565b84610b028560405180606001604052806025815260200161253c6025913960026000611334611d94565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611fed16565b600654604080516323b872dd60e01b81523360048201523060248201526044810184905290516101009092046001600160a01b0316916323b872dd916064808201926020929091908290030181600087803b1580156113c957600080fd5b505af11580156113dd573d6000803e3d6000fd5b505050506040513d60208110156113f357600080fd5b50516113fe57600080fd5b61140833826120de565b600b54611413610a7e565b1115610f3d5760405162461bcd60e51b815260040180806020018281038252602581526020018061241e6025913960400191505060405180910390fd5b60006107d461145d611d94565b8484611e84565b61146c611d94565b6000546001600160a01b039081169116146114bc576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b6006546001600160a01b0383811661010090920416141561151b576040805162461bcd60e51b815260206004820152601460248201527321a0a7102727aa102ba4aa24222920ab902a292160611b604482015290519081900360640190fd5b816001600160a01b031663a9059cbb61153261128d565b836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561158257600080fd5b505af1158015611596573d6000803e3d6000fd5b505050506040513d60208110156115ac57600080fd5b50516115b757600080fd5b5050565b6115c3611d94565b6000546001600160a01b03908116911614611613576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b42600981905550600660019054906101000a90046001600160a01b03166001600160a01b031663bed9d8616040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610a6457600080fd5b611672611d94565b6000546001600160a01b039081169116146116c2576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b60075433906001600160a01b031660005a6006546040516321a8141f60e11b815291925061010090046001600160a01b031690634350283e908990899089908990600481019081906024018460a080828437600083820152601f01601f191690910190508360a080828437600083820152601f01601f191690910183810383528681526020019050868680828437600081840152601f19601f82011690508083019250505095505050505050600060405180830381600087803b1580156108e057600080fd5b611790611d94565b6000546001600160a01b039081169116146117e0576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b60095415611835576040805162461bcd60e51b815260206004820152601c60248201527f4e4f2057495448445241575320414654455220554e5354414b494e4700000000604482015290519081900360640190fd5b600854611889576040805162461bcd60e51b815260206004820152601b60248201527f4e4f20574954484452415753204245464f5245205354414b494e470000000000604482015290519081900360640190fd5b600c54600b54600654604080516370a0823160e01b81523060048201529051600094939261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156118e157600080fd5b505afa1580156118f5573d6000803e3d6000fd5b505050506040513d602081101561190b57600080fd5b5051600a5491900391909103915060009061193790612710906107a3908590830363ffffffff611cf216565b600c805482850301905560065490915061010090046001600160a01b031663a9059cbb61153261128d565b61196a611d94565b6000546001600160a01b039081169116146119ba576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b600654604080516364e93d7f60e11b815260048101859052831515602482015290516101009092046001600160a01b03169163c9d27afe9160448082019260009290919082900301818387803b158015611a1357600080fd5b505af1158015611a27573d6000803e3d6000fd5b505050505050565b600a5490565b600954151580611a455750600854155b611a89576040805162461bcd60e51b815260206004820152601060248201526f1393d508155394d51052d1510816515560821b604482015290519081900360640190fd5b600654604080516370a0823160e01b8152306004820152905160009261010090046001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611ad957600080fd5b505afa158015611aed573d6000803e3d6000fd5b505050506040513d6020811015611b0357600080fd5b505190506000611b11610a7e565b90506000611b1e3361102f565b90506000611b36836107a3868563ffffffff611cf216565b9050611b4233836121dc565b6006546040805163a9059cbb60e01b81523360048201526024810184905290516101009092046001600160a01b03169163a9059cbb916044808201926020929091908290030181600087803b158015611b9a57600080fd5b505af1158015611bae573d6000803e3d6000fd5b505050506040513d6020811015611bc457600080fd5b5051610a7857600080fd5b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b611c02611d94565b6000546001600160a01b03908116911614611c52576040805162461bcd60e51b815260206004820181905260248201526000805160206124b2833981519152604482015290519081900360640190fd5b6001600160a01b038116611c975760405162461bcd60e51b81526004018080602001828103825260268152602001806123d66026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082611d01575060006107d8565b82820282848281611d0e57fe5b0414611d4b5760405162461bcd60e51b81526004018080602001828103825260218152602001806124696021913960400191505060405180910390fd5b9392505050565b6000611d4b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122e4565b3390565b6001600160a01b038316611ddd5760405162461bcd60e51b81526004018080602001828103825260248152602001806125186024913960400191505060405180910390fd5b6001600160a01b038216611e225760405162461bcd60e51b81526004018080602001828103825260228152602001806123fc6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611ec95760405162461bcd60e51b81526004018080602001828103825260258152602001806124f36025913960400191505060405180910390fd5b6001600160a01b038216611f0e5760405162461bcd60e51b81526004018080602001828103825260238152602001806123916023913960400191505060405180910390fd5b611f19838383612349565b611f5c81604051806060016040528060268152602001612443602691396001600160a01b038616600090815260016020526040902054919063ffffffff611fed16565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611f91908263ffffffff61208416565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561207c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612041578181015183820152602001612029565b50505050905090810190601f16801561206e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015611d4b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612139576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61214560008383612349565b600354612158908263ffffffff61208416565b6003556001600160a01b038216600090815260016020526040902054612184908263ffffffff61208416565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b0382166122215760405162461bcd60e51b81526004018080602001828103825260218152602001806124d26021913960400191505060405180910390fd5b61222d82600083612349565b612270816040518060600160405280602281526020016123b4602291396001600160a01b038516600090815260016020526040902054919063ffffffff611fed16565b6001600160a01b03831660009081526001602052604090205560035461229c908263ffffffff61234e16565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b600081836123335760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315612041578181015183820152602001612029565b50600083858161233f57fe5b0495945050505050565b505050565b6000611d4b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611fed56fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343414e204e4f5420414343455054204d4f5245205448414e205354414b4520414d4f554e5445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220627308012c16b3193126eec25ace0db70038a17b9d67b778362c3770845f09dd64736f6c63430006080033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000ba45a8b5d5575935b8158a88c631e9f9c95a2e50000000000000000000000000000000000004946c0e9f43f4dee607b0ef1fa1c000000000000000000000000000000000000000000000000000000000000009600000000000000000000000000000000000000000000000000000000000001f4
-----Decoded View---------------
Arg [0] : _tellorAddress (address): 0x0Ba45A8b5d5575935B8158a88C631E9F9C95a2e5
Arg [1] : _gasToken (address): 0x0000000000004946c0e9F43F4Dee607b0eF1fA1c
Arg [2] : _fee (uint256): 150
Arg [3] : _stakeAmount (uint256): 500
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000ba45a8b5d5575935b8158a88c631e9f9c95a2e5
Arg [1] : 0000000000000000000000000000000000004946c0e9f43f4dee607b0ef1fa1c
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000096
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001f4
Deployed Bytecode Sourcemap
29420:5342:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;29420:5342:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;20053:83:0;;;:::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;20053:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32386:208;;;:::i;:::-;;;;;;;;;;;;;;;;22159:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;22159:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;33216:248;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;33216:248:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;33216:248:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;33216:248:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;33216:248:0;;-1:-1:-1;33216:248:0;-1:-1:-1;33216:248:0;;;;;;;:::i;:::-;;34196:127;;;:::i;21128:100::-;;;:::i;22802:321::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;22802:321:0;;;;;;;;;;;;;;;;;:::i;34329:126::-;;;:::i;20980:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23532:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;23532:218:0;;;;;;;;:::i;33960:230::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;33960:230:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;33960:230:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;33960:230:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;33960:230:0;;-1:-1:-1;33960:230:0;-1:-1:-1;33960:230:0;;;;:::i;31395:429::-;;;:::i;33748:206::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;33748:206:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;33748:206:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;33748:206:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;33748:206:0;;-1:-1:-1;33748:206:0;-1:-1:-1;33748:206:0;;;;;;;:::i;21291:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;21291:119:0;-1:-1:-1;;;;;21291:119:0;;:::i;3200:148::-;;;:::i;33033:177::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33033:177:0;;;;;;;:::i;2558:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2558:79:0;;;;;;;;;;;;;;20255:87;;;:::i;24253:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;24253:269:0;;;;;;;;:::i;30516:249::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30516:249:0;;:::i;21623:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21623:175:0;;;;;;;;:::i;32792:235::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;32792:235:0;;;;;;;;:::i;34461:131::-;;;:::i;33470:272::-;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;33470:272:0;;;;;;;;-1:-1:-1;;;11:28;;8:2;;;52:1;49;42:12;8:2;33470:272:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;33470:272:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;33470:272:0;;-1:-1:-1;33470:272:0;-1:-1:-1;33470:272:0;;;;:::i;31863:447::-;;;:::i;34598:159::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;34598:159:0;;;;;;;;;:::i;32667:73::-;;;:::i;30818:513::-;;;:::i;21861:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21861:151:0;;;;;;;;;;:::i;3503:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;3503:244:0;-1:-1:-1;;;;;3503:244:0;;:::i;20053:83::-;20123:5;20116:12;;;;;;;;-1:-1:-1;;20116:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20090:13;;20116:12;;20123:5;;20116:12;;20123:5;20116:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20053:83;;:::o;32386:208::-;32434:7;32454:8;;32466:1;32454:13;32450:139;;32485:60;32531:13;:11;:13::i;:::-;32500;;32486:11;;32485:41;;32486:27;32519:6;32485:41;:33;:41;:::i;:::-;:45;:60;:45;:60;:::i;:::-;32478:67;;;;32450:139;-1:-1:-1;32575:6:0;32568:13;;22159:169;22242:4;22259:39;22268:12;:10;:12::i;:::-;22282:7;22291:6;22259:8;:39::i;:::-;-1:-1:-1;22316:4:0;22159:169;;;;;:::o;33216:248::-;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;33367:8:::1;::::0;33355:10:::1;::::0;-1:-1:-1;;;;;33367:8:0::1;;312:9;293:28;;33395:13:::2;;;;;;;;;-1:-1:-1::0;;;;;33395:13:0::2;-1:-1:-1::0;;;;;33387:43:0::2;;33431:6;;33439:10;33451:6;33387:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;33387:71:0;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::2;2:2;33387:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;-1:-1:::0;342:16:0::1;::::0;-1:-1:-1;;392:2:0::1;397:8;392:20;::::0;-1:-1:-1;380:9:0::1;369:8;361:5;:16;:28;:51;342:70;;424:17;458:8;424:43;;477:3;-1:-1:-1::0;;;;;477:16:0::1;;494:7;524:5;504:8;515:5;504:16;503:26;;;;;;477:53;;;;;;;;;;;;;-1:-1:-1::0;;;;;477:53:0::1;-1:-1:-1::0;;;;;477:53:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;477:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;477:53:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;;;;;;;;;;;33216:248:0:o;34196:127::-;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;34270:3:::1;34259:8;:14;;;;34288:13;;;;;;;;;-1:-1:-1::0;;;;;34288:13:0::1;-1:-1:-1::0;;;;;34280:35:0::1;;:37;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;34280:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;34280:37:0;;;;34196:127::o:0;21128:100::-;21208:12;;21128:100;:::o;22802:321::-;22908:4;22925:36;22935:6;22943:9;22954:6;22925:9;:36::i;:::-;22972:121;22981:6;22989:12;:10;:12::i;:::-;23003:89;23041:6;23003:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23003:19:0;;;;;;:11;:19;;;;;;23023:12;:10;:12::i;:::-;-1:-1:-1;;;;;23003:33:0;;;;;;;;;;;;-1:-1:-1;23003:33:0;;;:89;;:37;:89;:::i;:::-;22972:8;:121::i;:::-;-1:-1:-1;23111:4:0;22802:321;;;;;:::o;34329:126::-;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;34410:13:::1;;;;;;;;;-1:-1:-1::0;;;;;34410:13:0::1;-1:-1:-1::0;;;;;34402:45:0::1;;:47;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;20980:83:0::0;21046:9;;;;20980:83;:::o;23532:218::-;23620:4;23637:83;23646:12;:10;:12::i;:::-;23660:7;23669:50;23708:10;23669:11;:25;23681:12;:10;:12::i;:::-;-1:-1:-1;;;;;23669:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23669:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;33960:230::-;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;34121:13:::1;;;;;;;;;-1:-1:-1::0;;;;;34121:13:0::1;-1:-1:-1::0;;;;;34113:43:0::1;;34157:6;;34165:10;34177:6;34113:71;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16:::0;;::::1;74:27:::0;137:4:::1;117:14;-1:-1:::0;;113:30:::1;157:16:::0;;::::1;::::0;-1:-1;34113:71:0;;;;157:16:-1;1:33:::1;99:1;81:16:::0;;::::1;74:27:::0;137:4:::1;117:14;-1:-1:::0;;113:30:::1;157:16:::0;;::::1;34113:71:0::0;;::::1;::::0;;;;;::::1;;::::0;-1:-1:-1;34113:71:0;;;;;1:33:-1::1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;34113:71:0;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;34113:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;34113:71:0;;;;33960:230:::0;;;;:::o;31395:429::-;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;31582:7:::1;31576:3;:13;31563:10;;:26;:45;;;;-1:-1:-1::0;31593:10:0::1;::::0;:15;::::1;31563:45;31562:95;;;;31631:8;31625:3;:14;31614:8;;:25;:42;;;;-1:-1:-1::0;31643:8:0::1;::::0;:13;::::1;31614:42;31554:125;;;::::0;;-1:-1:-1;;;31554:125:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31554:125:0;;;;;;;;;;;;;::::1;;31713:13;::::0;31706:46:::1;::::0;;-1:-1:-1;;;31706:46:0;;31746:4:::1;31706:46;::::0;::::1;::::0;;;-1:-1:-1;;31713:13:0::1;::::0;::::1;-1:-1:-1::0;;;;;31713:13:0::1;::::0;31706:31:::1;::::0;:46;;;;;::::1;::::0;;;;;;;;31713:13;31706:46;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;31706:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;31706:46:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;31706:46:0;31774:13:::1;::::0;31706:46;;-1:-1:-1;31774:13:0::1;::::0;::::1;-1:-1:-1::0;;;;;31774:13:0::1;31767:30;31798:7;:5;:7::i;:::-;31807:9;31767:50;;;;;;;;;;;;;-1:-1:-1::0;;;;;31767:50:0::1;-1:-1:-1::0;;;;;31767:50:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;31767:50:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;31767:50:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;31767:50:0;31759:59:::1;;12:1:-1;9::::0;2:12:::1;31759:59:0;2840:1;31395:429::o:0;33748:206::-;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;33885:13:::1;;;;;;;;;-1:-1:-1::0;;;;;33885:13:0::1;-1:-1:-1::0;;;;;33877:43:0::1;;33921:6;;33929:10;33941:6;33877:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;33877:71:0;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;21291:119:0::0;-1:-1:-1;;;;;21384:18:0;21357:7;21384:18;;;:9;:18;;;;;;;21291:119::o;3200:148::-;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;3307:1:::1;3291:6:::0;;3270:40:::1;::::0;-1:-1:-1;;;;;3291:6:0;;::::1;::::0;3270:40:::1;::::0;3307:1;;3270:40:::1;3338:1;3321:19:::0;;-1:-1:-1;;;;;;3321:19:0::1;::::0;;3200:148::o;33033:177::-;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;33137:8:::1;::::0;33125:10:::1;::::0;-1:-1:-1;;;;;33137:8:0::1;;312:9;293:28;;33165:13:::2;;;;;;;;;-1:-1:-1::0;;;;;33165:13:0::2;-1:-1:-1::0;;;;;33157:29:0::2;;33187:10;33199:4;33157:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::2;2:2;33157:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;-1:-1:::0;342:16:0::1;::::0;-1:-1:-1;;392:2:0::1;397:8;392:20;::::0;-1:-1:-1;380:9:0::1;369:8;361:5;:16;:28;:51;342:70;;424:17;458:8;424:43;;477:3;-1:-1:-1::0;;;;;477:16:0::1;;494:7;524:5;504:8;515:5;504:16;503:26;;;;;;477:53;;;;;;;;;;;;;-1:-1:-1::0;;;;;477:53:0::1;-1:-1:-1::0;;;;;477:53:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;477:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;477:53:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;;;;;;;;;33033:177:0:o;2558:79::-;2596:7;2623:6;-1:-1:-1;;;;;2623:6:0;2558:79;:::o;20255:87::-;20327:7;20320:14;;;;;;;;-1:-1:-1;;20320:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20294:13;;20320:14;;20327:7;;20320:14;;20327:7;20320:14;;;;;;;;;;;;;;;;;;;;;;;;24253:269;24346:4;24363:129;24372:12;:10;:12::i;:::-;24386:7;24395:96;24434:15;24395:96;;;;;;;;;;;;;;;;;:11;:25;24407:12;:10;:12::i;:::-;-1:-1:-1;;;;;24395:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;24395:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;30516:249::-;30577:13;;30570:70;;;-1:-1:-1;;;30570:70:0;;30605:10;30570:70;;;;30625:4;30570:70;;;;;;;;;;;;30577:13;;;;-1:-1:-1;;;;;30577:13:0;;30570:34;;:70;;;;;;;;;;;;;;;-1:-1:-1;30577:13:0;30570:70;;;2:2:-1;;;;27:1;24;17:12;2:2;30570:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30570:70:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30570:70:0;30562:79;;12:1:-1;9;2:12;30562:79:0;30648:26;30654:10;30666:7;30648:5;:26::i;:::-;30706:11;;30689:13;:11;:13::i;:::-;:28;;30681:78;;;;-1:-1:-1;;;30681:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21623:175;21709:4;21726:42;21736:12;:10;:12::i;:::-;21750:9;21761:6;21726:9;:42::i;32792:235::-;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;32919:13:::1;::::0;-1:-1:-1;;;;;32902:30:0;;::::1;32919:13;::::0;;::::1;;32902:30;;32894:63;;;::::0;;-1:-1:-1;;;32894:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;32894:63:0;;;;;;;;;;;;;::::1;;32979:13;-1:-1:-1::0;;;;;32972:30:0::1;;33003:7;:5;:7::i;:::-;33012;32972:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;32972:48:0::1;-1:-1:-1::0;;;;;32972:48:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;32972:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;32972:48:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;32972:48:0;32964:57:::1;;12:1:-1;9::::0;2:12:::1;32964:57:0;32792:235:::0;;:::o;34461:131::-;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;34538:3:::1;34525:10;:16;;;;34556:13;;;;;;;;;-1:-1:-1::0;;;;;34556:13:0::1;-1:-1:-1::0;;;;;34548:36:0::1;;:38;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;33470:272:0::0;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;33645:8:::1;::::0;33633:10:::1;::::0;-1:-1:-1;;;;;33645:8:0::1;;312:9;33673:13:::2;::::0;33665:71:::2;::::0;-1:-1:-1;;;33665:71:0;;293:28;;-1:-1:-1;33673:13:0::2;::::0;::::2;-1:-1:-1::0;;;;;33673:13:0::2;::::0;33665:43:::2;::::0;33709:6;;;;33717:10;;33729:6;;33665:71:::2;::::0;::::2;::::0;;;;;33717:10;33665:71;;33717:10;33665:71;1:33:-1::2;99:1;81:16:::0;;::::2;74:27:::0;137:4:::2;117:14;-1:-1:::0;;113:30:::2;157:16:::0;;::::2;::::0;-1:-1;33665:71:0;;;;157:16:-1;1:33:::2;99:1;81:16:::0;;::::2;74:27:::0;137:4:::2;117:14;-1:-1:::0;;113:30:::2;157:16:::0;;::::2;33665:71:0::0;;::::2;::::0;;;;;::::2;;::::0;-1:-1:-1;33665:71:0;;;;;1:33:-1::2;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;33665:71:0;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::2;31863:447:0::0;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;31924:10:::1;::::0;:15;31916:56:::1;;;::::0;;-1:-1:-1;;;31916:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31987:8;::::0;31979:53:::1;;;::::0;;-1:-1:-1;;;31979:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32120:13;::::0;32106:11:::1;::::0;32064:13:::1;::::0;32057:46:::1;::::0;;-1:-1:-1;;;32057:46:0;;32097:4:::1;32057:46;::::0;::::1;::::0;;;-1:-1:-1;;32120:13:0;32106:11;32064:13:::1;::::0;::::1;-1:-1:-1::0;;;;;32064:13:0::1;::::0;32057:31:::1;::::0;:46;;;;;::::1;::::0;;;;;;;;32064:13;32057:46;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;32057:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;32057:46:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;32057:46:0;32180:3:::1;::::0;32057:60;;::::1;:76:::0;;;::::1;::::0;-1:-1:-1;32140:17:0::1;::::0;32160:35:::1;::::0;32189:5:::1;::::0;32160:24:::1;::::0;32057:76;;32172:11;::::1;32160:24;:11;:24;:::i;:35::-;32202:13;:36:::0;;32219:19;;::::1;32202:36;::::0;;32260:13:::1;::::0;32219:19;;-1:-1:-1;32260:13:0::1;::::0;::::1;-1:-1:-1::0;;;;;32260:13:0::1;32253:30;32284:7;:5;:7::i;34598:159::-:0;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;34702:13:::1;::::0;34694:57:::1;::::0;;-1:-1:-1;;;34694:57:0;;::::1;::::0;::::1;::::0;;;;::::1;;::::0;;;;;;34702:13:::1;::::0;;::::1;-1:-1:-1::0;;;;;34702:13:0::1;::::0;34694:27:::1;::::0;:57;;;;;-1:-1:-1;;34694:57:0;;;;;;;;-1:-1:-1;34702:13:0;34694:57;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;34694:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;34694:57:0;;;;34598:159:::0;;:::o;32667:73::-;32731:3;;32667:73;:::o;30818:513::-;30935:10;;:15;;;:32;;-1:-1:-1;30954:8:0;;:13;30935:32;30927:61;;;;;-1:-1:-1;;;30927:61:0;;;;;;;;;;;;-1:-1:-1;;;30927:61:0;;;;;;;;;;;;;;;31021:13;;31014:46;;;-1:-1:-1;;;31014:46:0;;31054:4;31014:46;;;;;;-1:-1:-1;;31021:13:0;;;-1:-1:-1;;;;;31021:13:0;;31014:31;;:46;;;;;;;;;;;;;;31021:13;31014:46;;;2:2:-1;;;;27:1;24;17:12;2:2;31014:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31014:46:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31014:46:0;;-1:-1:-1;31067:19:0;31089:13;:11;:13::i;:::-;31067:35;;31109:19;31131:21;31141:10;31131:9;:21::i;:::-;31109:43;-1:-1:-1;31159:16:0;31178:42;31208:11;31178:25;:8;31109:43;31178:25;:12;:25;:::i;:42::-;31159:61;;31227:30;31233:10;31245:11;31227:5;:30::i;:::-;31279:13;;31272:52;;;-1:-1:-1;;;31272:52:0;;31303:10;31272:52;;;;;;;;;;;;31279:13;;;;-1:-1:-1;;;;;31279:13:0;;31272:30;;:52;;;;;;;;;;;;;;;-1:-1:-1;31279:13:0;31272:52;;;2:2:-1;;;;27:1;24;17:12;2:2;31272:52:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31272:52:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31272:52:0;31264:61;;12:1:-1;9;2:12;21861:151:0;-1:-1:-1;;;;;21977:18:0;;;21950:7;21977:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21861:151::o;3503:244::-;2780:12;:10;:12::i;:::-;2770:6;;-1:-1:-1;;;;;2770:6:0;;;:22;;;2762:67;;;;;-1:-1:-1;;;2762:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2762:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3592:22:0;::::1;3584:73;;;;-1:-1:-1::0;;;3584:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3694:6;::::0;;3673:38:::1;::::0;-1:-1:-1;;;;;3673:38:0;;::::1;::::0;3694:6;::::1;::::0;3673:38:::1;::::0;::::1;3722:6;:17:::0;;-1:-1:-1;;;;;;3722:17:0::1;-1:-1:-1::0;;;;;3722:17:0;;;::::1;::::0;;;::::1;::::0;;3503:244::o;8778:471::-;8836:7;9081:6;9077:47;;-1:-1:-1;9111:1:0;9104:8;;9077:47;9148:5;;;9152:1;9148;:5;:1;9172:5;;;;;:10;9164:56;;;;-1:-1:-1;;;9164:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9240:1;8778:471;-1:-1:-1;;;8778:471:0:o;9725:132::-;9783:7;9810:39;9814:1;9817;9810:39;;;;;;;;;;;;;;;;;:3;:39::i;1141:106::-;1229:10;1141:106;:::o;27398:346::-;-1:-1:-1;;;;;27500:19:0;;27492:68;;;;-1:-1:-1;;;27492:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27579:21:0;;27571:68;;;;-1:-1:-1;;;27571:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27652:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27704:32;;;;;;;;;;;;;;;;;27398:346;;;:::o;25012:539::-;-1:-1:-1;;;;;25118:20:0;;25110:70;;;;-1:-1:-1;;;25110:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25199:23:0;;25191:71;;;;-1:-1:-1;;;25191:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25275:47;25296:6;25304:9;25315:6;25275:20;:47::i;:::-;25355:71;25377:6;25355:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25355:17:0;;;;;;:9;:17;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;25335:17:0;;;;;;;:9;:17;;;;;;:91;;;;25460:20;;;;;;;:32;;25485:6;25460:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;25437:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;25508:35;;;;;;;25437:20;;25508:35;;;;;;;;;;;;;25012:539;;;:::o;8327:192::-;8413:7;8449:12;8441:6;;;;8433:29;;;;-1:-1:-1;;;8433: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;8433:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8485:5:0;;;8327:192::o;7424:181::-;7482:7;7514:5;;;7538:6;;;;7530:46;;;;;-1:-1:-1;;;7530:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;25832:378;-1:-1:-1;;;;;25916:21:0;;25908:65;;;;;-1:-1:-1;;;25908:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25986:49;26015:1;26019:7;26028:6;25986:20;:49::i;:::-;26063:12;;:24;;26080:6;26063:24;:16;:24;:::i;:::-;26048:12;:39;-1:-1:-1;;;;;26119:18:0;;;;;;:9;:18;;;;;;:30;;26142:6;26119:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;26098:18:0;;;;;;:9;:18;;;;;;;;:51;;;;26165:37;;;;;;;26098:18;;;;26165:37;;;;;;;;;;25832:378;;:::o;26542:418::-;-1:-1:-1;;;;;26626:21:0;;26618:67;;;;-1:-1:-1;;;26618:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26698:49;26719:7;26736:1;26740:6;26698:20;:49::i;:::-;26781:68;26804:6;26781:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26781:18:0;;;;;;:9;:18;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;26760:18:0;;;;;;:9;:18;;;;;:89;26875:12;;:24;;26892:6;26875:24;:16;:24;:::i;:::-;26860:12;:39;26915:37;;;;;;;;26941:1;;-1:-1:-1;;;;;26915:37:0;;;;;;;;;;;;26542:418;;:::o;10353:278::-;10439:7;10474:12;10467:5;10459:28;;;;-1:-1:-1;;;10459:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;10459:28:0;;10498:9;10514:1;10510;:5;;;;;;;10353:278;-1:-1:-1;;;;;10353:278:0:o;28769:92::-;;;;:::o;7888:136::-;7946:7;7973:43;7977:1;7980;7973:43;;;;;;;;;;;;;;;;;:3;:43::i
Swarm Source
ipfs://627308012c16b3193126eec25ace0db70038a17b9d67b778362c3770845f09dd
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.