Contract Overview
My Name Tag:
Not Available, login to update
Txn Hash |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|
0xfa2f5b1e87160f740b0267bcfc1c65217e222bc44aae1667a95cb8560d02fe91 | 2216111 | 112 days 8 mins ago | 0x0fce9273490a5e93bb6b3823adb179ec27f0d1a3 | IN | 0xc01307c9e92539f13805b794efcab9425a2e4bdf | 0 BNB | 0.00557558 | |
0x26b81aa0ed90e4ea6084c1c805686149364f73773b1570f17cd71f0afeb2706e | 2215880 | 112 days 20 mins ago | 0x0fce9273490a5e93bb6b3823adb179ec27f0d1a3 | IN | 0xc01307c9e92539f13805b794efcab9425a2e4bdf | 0 BNB | 0.00496662 | |
0x4f0732d0b42e91965a0e8f8e9c2877ec15c603882b4d99312ed29666a9c8d3d8 | 2215777 | 112 days 25 mins ago | Thugs: Deployer | IN | Contract Creation | 0 BNB | 0.0218706 |
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
ThugCollecter
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2020-11-14 */ // File: traphouse-lib/contracts/math/SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity >=0.4.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, 'SafeMath: addition overflow'); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, 'SafeMath: subtraction overflow'); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ 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; } function min(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x < y ? x : y; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } } // File: traphouse-lib/contracts/token/BEP20/IBEP20.sol pragma solidity >=0.4.0; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @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: traphouse-lib/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, 'Address: insufficient balance'); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(''); require(success, 'Address: unable to send value, recipient may have reverted'); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, 'Address: low-level call failed'); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, 'Address: low-level call with value failed'); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, 'Address: insufficient balance for call'); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), 'Address: call to non-contract'); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: traphouse-lib/contracts/token/BEP20/SafeBEP20.sol pragma solidity ^0.6.0; /** * @title SafeBEP20 * @dev Wrappers around BEP20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeBEP20 for IBEP20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeBEP20 { using SafeMath for uint256; using Address for address; function safeTransfer( IBEP20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IBEP20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IBEP20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IBEP20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require( (value == 0) || (token.allowance(address(this), spender) == 0), 'SafeBEP20: approve from non-zero to non-zero allowance' ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IBEP20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IBEP20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).sub( value, 'SafeBEP20: decreased allowance below zero' ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IBEP20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, 'SafeBEP20: low-level call failed'); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), 'SafeBEP20: BEP20 operation did not succeed'); } } } // File: contracts/swap/interfaces/IThugswapBEP20.sol pragma solidity >=0.5.0; interface IThugswapBEP20 { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; } // File: contracts/swap/interfaces/IThugswapPair.sol pragma solidity >=0.5.0; interface IThugswapPair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: contracts/swap/interfaces/IThugswapFactory.sol pragma solidity >=0.5.0; interface IThugswapFactory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: contracts/ThugCollecter.sol pragma solidity 0.6.12; // Fee Buy-Backs for THE STREETS. Get your Cred son. contract ThugCollecter { using SafeMath for uint256; using SafeBEP20 for IBEP20; IThugswapFactory public factory; address public street; address public thugs; address public wbnb; constructor(IThugswapFactory _factory, address _street, address _thugs, address _wbnb) public { factory = _factory; thugs = _thugs; street = _street; wbnb = _wbnb; } function convert(address token0, address token1) public { // At least we try to make front-running harder to do. require(msg.sender == tx.origin, "do not convert from contract"); IThugswapPair pair = IThugswapPair(factory.getPair(token0, token1)); pair.transfer(address(pair), pair.balanceOf(address(this))); pair.burn(address(this)); // First we convert everything to WBNB uint256 wbnbAmount = _toWBNB(token0) + _toWBNB(token1); // Then we convert the WBNB to Thugs _toTHUGS(wbnbAmount); } // Converts token passed as an argument to WBNB function _toWBNB(address token) internal returns (uint256) { // If the passed token is Thugs, don't convert anything if (token == thugs) { uint amount = IBEP20(token).balanceOf(address(this)); _safeTransfer(token, street, amount); return 0; } // If the passed token is WBNB, don't convert anything if (token == wbnb) { uint amount = IBEP20(token).balanceOf(address(this)); _safeTransfer(token, factory.getPair(wbnb, thugs), amount); return amount; } // If the target pair doesn't exist, don't convert anything IThugswapPair pair = IThugswapPair(factory.getPair(token, wbnb)); if (address(pair) == address(0)) { return 0; } // Choose the correct reserve to swap from (uint reserve0, uint reserve1,) = pair.getReserves(); address token0 = pair.token0(); (uint reserveIn, uint reserveOut) = token0 == token ? (reserve0, reserve1) : (reserve1, reserve0); // Calculate information required to swap uint amountIn = IBEP20(token).balanceOf(address(this)); uint amountInWithFee = amountIn.mul(996); uint numerator = amountInWithFee.mul(reserveOut); uint denominator = reserveIn.mul(1000).add(amountInWithFee); uint amountOut = numerator / denominator; (uint amount0Out, uint amount1Out) = token0 == token ? (uint(0), amountOut) : (amountOut, uint(0)); // Swap the token for WBNB _safeTransfer(token, address(pair), amountIn); pair.swap(amount0Out, amount1Out, factory.getPair(wbnb, thugs), new bytes(0)); return amountOut; } // Converts WBNB to Thugs function _toTHUGS(uint256 amountIn) internal { IThugswapPair pair = IThugswapPair(factory.getPair(wbnb, thugs)); // Choose WBNB as input token (uint reserve0, uint reserve1,) = pair.getReserves(); address token0 = pair.token0(); (uint reserveIn, uint reserveOut) = token0 == wbnb ? (reserve0, reserve1) : (reserve1, reserve0); // Calculate information required to swap uint amountInWithFee = amountIn.mul(996); uint numerator = amountInWithFee.mul(reserveOut); uint denominator = reserveIn.mul(1000).add(amountInWithFee); uint amountOut = numerator / denominator; (uint amount0Out, uint amount1Out) = token0 == wbnb ? (uint(0), amountOut) : (amountOut, uint(0)); // Swap WBNB for Thugs pair.swap(amount0Out, amount1Out, street, new bytes(0)); } // Wrapper for safeTransfer function _safeTransfer(address token, address to, uint256 amount) internal { IBEP20(token).safeTransfer(to, amount); } }
[{"inputs":[{"internalType":"contract IThugswapFactory","name":"_factory","type":"address"},{"internalType":"address","name":"_street","type":"address"},{"internalType":"address","name":"_thugs","type":"address"},{"internalType":"address","name":"_wbnb","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"}],"name":"convert","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"contract IThugswapFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"street","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thugs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wbnb","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506040516111e63803806111e68339818101604052608081101561003357600080fd5b50805160208201516040830151606090930151600080546001600160a01b039485166001600160a01b03199182161790915560028054958516958216959095179094556001805492841692851692909217909155600380549290911691909216179055611141806100a56000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c8063741966261461005c5780638d72647e14610080578063bd1b820c14610088578063bf848a91146100b8578063c45a0155146100c0575b600080fd5b6100646100c8565b604080516001600160a01b039092168252519081900360200190f35b6100646100d7565b6100b66004803603604081101561009e57600080fd5b506001600160a01b03813581169160200135166100e6565b005b61006461034d565b61006461035c565b6001546001600160a01b031681565b6003546001600160a01b031681565b33321461013a576040805162461bcd60e51b815260206004820152601c60248201527f646f206e6f7420636f6e766572742066726f6d20636f6e747261637400000000604482015290519081900360640190fd5b600080546040805163e6a4390560e01b81526001600160a01b03868116600483015285811660248301529151919092169163e6a43905916044808301926020929190829003018186803b15801561019057600080fd5b505afa1580156101a4573d6000803e3d6000fd5b505050506040513d60208110156101ba57600080fd5b5051604080516370a0823160e01b815230600482015290519192506001600160a01b0383169163a9059cbb91849184916370a08231916024808301926020929190829003018186803b15801561020f57600080fd5b505afa158015610223573d6000803e3d6000fd5b505050506040513d602081101561023957600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b03909316600484015260248301919091525160448083019260209291908290030181600087803b15801561028a57600080fd5b505af115801561029e573d6000803e3d6000fd5b505050506040513d60208110156102b457600080fd5b50506040805163226bf2d160e21b815230600482015281516001600160a01b038416926389afcb4492602480820193918290030181600087803b1580156102fa57600080fd5b505af115801561030e573d6000803e3d6000fd5b505050506040513d604081101561032457600080fd5b50600090506103328361036b565b61033b8561036b565b019050610347816109cc565b50505050565b6002546001600160a01b031681565b6000546001600160a01b031681565b6002546000906001600160a01b0383811691161415610424576000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156103d357600080fd5b505afa1580156103e7573d6000803e3d6000fd5b505050506040513d60208110156103fd57600080fd5b505160015490915061041a9084906001600160a01b031683610cf2565b60009150506109c7565b6003546001600160a01b0383811691161415610552576000826001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561048957600080fd5b505afa15801561049d573d6000803e3d6000fd5b505050506040513d60208110156104b357600080fd5b50516000546003546002546040805163e6a4390560e01b81526001600160a01b03938416600482015291831660248301525193945061054b938793929092169163e6a4390591604480820192602092909190829003018186803b15801561051957600080fd5b505afa15801561052d573d6000803e3d6000fd5b505050506040513d602081101561054357600080fd5b505183610cf2565b90506109c7565b600080546003546040805163e6a4390560e01b81526001600160a01b03878116600483015292831660248201529051919092169163e6a43905916044808301926020929190829003018186803b1580156105ab57600080fd5b505afa1580156105bf573d6000803e3d6000fd5b505050506040513d60208110156105d557600080fd5b505190506001600160a01b0381166105f15760009150506109c7565b600080826001600160a01b0316630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561062d57600080fd5b505afa158015610641573d6000803e3d6000fd5b505050506040513d606081101561065757600080fd5b50805160209182015160408051630dfe168160e01b815290516001600160701b0393841696509290911693506000926001600160a01b03871692630dfe1681926004808201939291829003018186803b1580156106b357600080fd5b505afa1580156106c7573d6000803e3d6000fd5b505050506040513d60208110156106dd57600080fd5b505190506000806001600160a01b03808416908916146106fe578385610701565b84845b915091506000886001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561075457600080fd5b505afa158015610768573d6000803e3d6000fd5b505050506040513d602081101561077e57600080fd5b505190506000610790826103e4610d0b565b9050600061079e8285610d0b565b905060006107b8836107b2886103e8610d0b565b90610d6d565b905060008183816107c557fe5b0490506000808e6001600160a01b03168a6001600160a01b0316146107ec578260006107f0565b6000835b915091506107ff8f8e89610cf2565b8c6001600160a01b031663022c0d9f838360008054906101000a90046001600160a01b03166001600160a01b031663e6a43905600360009054906101000a90046001600160a01b0316600260009054906101000a90046001600160a01b03166040518363ffffffff1660e01b815260040180836001600160a01b03168152602001826001600160a01b031681526020019250505060206040518083038186803b1580156108ab57600080fd5b505afa1580156108bf573d6000803e3d6000fd5b505050506040513d60208110156108d557600080fd5b50516040805160008082526020820190925290506040518563ffffffff1660e01b815260040180858152602001848152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610950578181015183820152602001610938565b50505050905090810190601f16801561097d5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561099f57600080fd5b505af11580156109b3573d6000803e3d6000fd5b50949f505050505050505050505050505050505b919050565b600080546003546002546040805163e6a4390560e01b81526001600160a01b039384166004820152918316602483015251919092169163e6a43905916044808301926020929190829003018186803b158015610a2757600080fd5b505afa158015610a3b573d6000803e3d6000fd5b505050506040513d6020811015610a5157600080fd5b505160408051630240bc6b60e21b8152905191925060009182916001600160a01b03851691630902f1ac91600480820192606092909190829003018186803b158015610a9c57600080fd5b505afa158015610ab0573d6000803e3d6000fd5b505050506040513d6060811015610ac657600080fd5b50805160209182015160408051630dfe168160e01b815290516001600160701b0393841696509290911693506000926001600160a01b03871692630dfe1681926004808201939291829003018186803b158015610b2257600080fd5b505afa158015610b36573d6000803e3d6000fd5b505050506040513d6020811015610b4c57600080fd5b505160035490915060009081906001600160a01b03808516911614610b72578385610b75565b84845b90925090506000610b88886103e4610d0b565b90506000610b968284610d0b565b90506000610baa836107b2876103e8610d0b565b90506000818381610bb757fe5b600354919004915060009081906001600160a01b038a8116911614610bde57826000610be2565b6000835b600154604080516000808252602082019092529395509193506001600160a01b038f81169363022c0d9f9387938793169190506040518563ffffffff1660e01b815260040180858152602001848152602001836001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b83811015610c7c578181015183820152602001610c64565b50505050905090810190601f168015610ca95780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015610ccb57600080fd5b505af1158015610cdf573d6000803e3d6000fd5b5050505050505050505050505050505050565b610d066001600160a01b0384168383610dc7565b505050565b600082610d1a57506000610d67565b82820282848281610d2757fe5b0414610d645760405162461bcd60e51b81526004018080602001828103825260218152602001806110eb6021913960400191505060405180910390fd5b90505b92915050565b600082820183811015610d64576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d069084906060610e69826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610ec59092919063ffffffff16565b805190915015610d0657808060200190516020811015610e8857600080fd5b5051610d065760405162461bcd60e51b815260040180806020018281038252602a8152602001806110c1602a913960400191505060405180910390fd5b6060610ed48484600085610edc565b949350505050565b6060610ee785611087565b610f38576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310610f775780518252601f199092019160209182019101610f58565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114610fd9576040519150601f19603f3d011682016040523d82523d6000602084013e610fde565b606091505b50915091508115610ff2579150610ed49050565b8051156110025780518082602001fd5b8360405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561104c578181015183820152602001611034565b50505050905090810190601f1680156110795780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610ed457505015159291505056fe5361666542455032303a204245503230206f7065726174696f6e20646964206e6f742073756363656564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a26469706673582212201dd0ddf04815d41adeed7bbaafac53acd49b9d8856828e2d3cc9aa16e10f4d3764736f6c634300060c0033000000000000000000000000ac653ce27e04c6ac565fd87f18128ad33ca03ba2000000000000000000000000571d0b55fe30eb1f6e68e8799f181c46de6b0059000000000000000000000000e10e9822a5de22f8761919310dda35cd997d63c0000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ac653ce27e04c6ac565fd87f18128ad33ca03ba2000000000000000000000000571d0b55fe30eb1f6e68e8799f181c46de6b0059000000000000000000000000e10e9822a5de22f8761919310dda35cd997d63c0000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000ac653ce27e04c6ac565fd87f18128ad33ca03ba2
Arg [1] : 000000000000000000000000571d0b55fe30eb1f6e68e8799f181c46de6b0059
Arg [2] : 000000000000000000000000e10e9822a5de22f8761919310dda35cd997d63c0
Arg [3] : 000000000000000000000000bb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c
Deployed ByteCode Sourcemap
24315:3888:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24451:21;;;:::i;:::-;;;;-1:-1:-1;;;;;24451:21:0;;;;;;;;;;;;;;24506:19;;;:::i;24748:576::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;24748:576:0;;;;;;;;;;:::i;:::-;;24479:20;;;:::i;24413:31::-;;;:::i;24451:21::-;;;-1:-1:-1;;;;;24451:21:0;;:::o;24506:19::-;;;-1:-1:-1;;;;;24506:19:0;;:::o;24748:576::-;24887:10;24901:9;24887:23;24879:64;;;;;-1:-1:-1;;;24879:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24954:18;24989:7;;:31;;;-1:-1:-1;;;24989:31:0;;-1:-1:-1;;;;;24989:31:0;;;;;;;;;;;;;;;;:7;;;;;:15;;:31;;;;;;;;;;;;;;:7;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24989:31:0;25061:29;;;-1:-1:-1;;;25061:29:0;;25084:4;25061:29;;;;;;24989:31;;-1:-1:-1;;;;;;25032:13:0;;;;;24989:31;;25032:13;;25061:14;;:29;;;;;24989:31;;25061:29;;;;;;;25032:13;25061:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25061:29:0;25032:59;;;-1:-1:-1;;;;;;25032:59:0;;;;;;;-1:-1:-1;;;;;25032:59:0;;;;;;;;;;;;;;;;;;;;25061:29;;25032:59;;;;;;;-1:-1:-1;25032:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25102:24:0;;;-1:-1:-1;;;25102:24:0;;25120:4;25102:24;;;;;;-1:-1:-1;;;;;25102:9:0;;;;;:24;;;;;;;;;;;-1:-1:-1;25102:9:0;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25185:18:0;;-1:-1:-1;25224:15:0;25232:6;25224:7;:15::i;:::-;25206;25214:6;25206:7;:15::i;:::-;:33;25185:54;;25296:20;25305:10;25296:8;:20::i;:::-;24748:576;;;;:::o;24479:20::-;;;-1:-1:-1;;;;;24479:20:0;;:::o;24413:31::-;;;-1:-1:-1;;;;;24413:31:0;;:::o;25385:1737::-;25533:5;;25435:7;;-1:-1:-1;;;;;25524:14:0;;;25533:5;;25524:14;25520:173;;;25555:11;25576:5;-1:-1:-1;;;;;25569:23:0;;25601:4;25569:38;;;;;;;;;;;;;-1:-1:-1;;;;;25569:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25569:38:0;25643:6;;25569:38;;-1:-1:-1;25622:36:0;;25636:5;;-1:-1:-1;;;;;25643:6:0;25569:38;25622:13;:36::i;:::-;25680:1;25673:8;;;;;25520:173;25780:4;;-1:-1:-1;;;;;25771:13:0;;;25780:4;;25771:13;25767:199;;;25801:11;25822:5;-1:-1:-1;;;;;25815:23:0;;25847:4;25815:38;;;;;;;;;;;;;-1:-1:-1;;;;;25815:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25815:38:0;25889:7;;25905:4;;25911:5;;25889:28;;;-1:-1:-1;;;25889:28:0;;-1:-1:-1;;;;;25905:4:0;;;25889:28;;;;25911:5;;;25889:28;;;;;25815:38;;-1:-1:-1;25868:58:0;;25882:5;;25889:7;;;;;:15;;:28;;;;;25815:38;;25889:28;;;;;;;;:7;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25889:28:0;25919:6;25868:13;:58::i;:::-;25948:6;-1:-1:-1;25941:13:0;;25767:199;26045:18;26080:7;;26103:4;;26080:28;;;-1:-1:-1;;;26080:28:0;;-1:-1:-1;;;;;26080:28:0;;;;;;;26103:4;;;26080:28;;;;;;:7;;;;;:15;;:28;;;;;;;;;;;;;;:7;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26080:28:0;;-1:-1:-1;;;;;;26124:27:0;;26120:68;;26175:1;26168:8;;;;;26120:68;26251:13;26266;26284:4;-1:-1:-1;;;;;26284:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26284:18:0;;;;;;;;26330:13;;-1:-1:-1;;;26330:13:0;;;;-1:-1:-1;;;;;26250:52:0;;;;-1:-1:-1;26250:52:0;;;;;-1:-1:-1;26313:14:0;;-1:-1:-1;;;;;26330:11:0;;;;;:13;;;;;26284:18;26330:13;;;;;;:11;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26330:13:0;;-1:-1:-1;26355:14:0;;-1:-1:-1;;;;;26390:15:0;;;;;;;:61;;26432:8;26442;26390:61;;;26409:8;26419;26390:61;26354:97;;;;26513:13;26536:5;-1:-1:-1;;;;;26529:23:0;;26561:4;26529:38;;;;;;;;;;;;;-1:-1:-1;;;;;26529:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26529:38:0;;-1:-1:-1;26578:20:0;26601:17;26529:38;26614:3;26601:12;:17::i;:::-;26578:40;-1:-1:-1;26629:14:0;26646:31;26578:40;26666:10;26646:19;:31::i;:::-;26629:48;-1:-1:-1;26688:16:0;26707:40;26731:15;26707:19;:9;26721:4;26707:13;:19::i;:::-;:23;;:40::i;:::-;26688:59;;26758:14;26787:11;26775:9;:23;;;;;;26758:40;;26810:15;26827;26856:5;-1:-1:-1;;;;;26846:15:0;:6;-1:-1:-1;;;;;26846:15:0;;:61;;26888:9;26904:1;26846:61;;;26870:1;26874:9;26846:61;26809:98;;;;26954:45;26968:5;26983:4;26990:8;26954:13;:45::i;:::-;27010:4;-1:-1:-1;;;;;27010:9:0;;27020:10;27032;27044:7;;;;;;;;-1:-1:-1;;;;;27044:7:0;-1:-1:-1;;;;;27044:15:0;;27060:4;;;;;;;;;-1:-1:-1;;;;;27060:4:0;27066:5;;;;;;;;;-1:-1:-1;;;;;27066:5:0;27044:28;;;;;;;;;;;;;-1:-1:-1;;;;;27044:28:0;;;;;;-1:-1:-1;;;;;27044:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27044:28:0;27074:12;;;27084:1;27074:12;;;;;;;;;;;27010:77;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27010:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27105:9:0;;-1:-1:-1;;;;;;;;;;;;;;;;25385:1737:0;;;;:::o;27161:866::-;27217:18;27252:7;;27268:4;;27274:5;;27252:28;;;-1:-1:-1;;;27252:28:0;;-1:-1:-1;;;;;27268:4:0;;;27252:28;;;;27274:5;;;27252:28;;;;;:7;;;;;:15;;:28;;;;;;;;;;;;;;:7;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27252:28:0;27365:18;;;-1:-1:-1;;;27365:18:0;;;;27252:28;;-1:-1:-1;27332:13:0;;;;-1:-1:-1;;;;;27365:16:0;;;;;:18;;;;;;;;;;;;;;;:16;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27365:18:0;;;;;;;;27411:13;;-1:-1:-1;;;27411:13:0;;;;-1:-1:-1;;;;;27331:52:0;;;;-1:-1:-1;27331:52:0;;;;;-1:-1:-1;27394:14:0;;-1:-1:-1;;;;;27411:11:0;;;;;:13;;;;;27365:18;27411:13;;;;;;:11;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27411:13:0;27481:4;;27411:13;;-1:-1:-1;27436:14:0;;;;-1:-1:-1;;;;;27471:14:0;;;27481:4;;27471:14;:60;;27512:8;27522;27471:60;;;27489:8;27499;27471:60;27435:96;;-1:-1:-1;27435:96:0;-1:-1:-1;27593:20:0;27616:17;:8;27629:3;27616:12;:17::i;:::-;27593:40;-1:-1:-1;27644:14:0;27661:31;27593:40;27681:10;27661:19;:31::i;:::-;27644:48;-1:-1:-1;27703:16:0;27722:40;27746:15;27722:19;:9;27736:4;27722:13;:19::i;:40::-;27703:59;;27773:14;27802:11;27790:9;:23;;;;;27871:4;;27790:23;;;;-1:-1:-1;27825:15:0;;;;-1:-1:-1;;;;;27861:14:0;;;27871:4;;27861:14;:60;;27902:9;27918:1;27861:60;;;27884:1;27888:9;27861:60;27998:6;;28006:12;;;27998:6;28006:12;;;;;;;;;27824:97;;-1:-1:-1;27824:97:0;;-1:-1:-1;;;;;;27964:9:0;;;;;;27824:97;;;;27998:6;;28006:12;;27964:55;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27964:55:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27161:866;;;;;;;;;;;;;:::o;28068:132::-;28154:38;-1:-1:-1;;;;;28154:26:0;;28181:2;28185:6;28154:26;:38::i;:::-;28068:132;;;:::o;2345:471::-;2403:7;2648:6;2644:47;;-1:-1:-1;2678:1:0;2671:8;;2644:47;2715:5;;;2719:1;2715;:5;:1;2739:5;;;;;:10;2731:56;;;;-1:-1:-1;;;2731:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2807:1;-1:-1:-1;2345:471:0;;;;;:::o;957:181::-;1015:7;1047:5;;;1071:6;;;;1063:46;;;;;-1:-1:-1;;;1063:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16366:211;16510:58;;;-1:-1:-1;;;;;16510:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16510:58:0;-1:-1:-1;;;16510:58:0;;;16483:86;;16503:5;;19325:23;19351:69;19379:4;19351:69;;;;;;;;;;;;;;;;;19359:5;-1:-1:-1;;;;;19351:27:0;;;:69;;;;;:::i;:::-;19435:17;;19325:95;;-1:-1:-1;19435:21:0;19431:237;;19590:10;19579:30;;;;;;;;;;;;;;;-1:-1:-1;19579:30:0;19571:85;;;;-1:-1:-1;;;19571:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13197:230;13334:12;13366:53;13389:6;13397:4;13403:1;13406:12;13366:22;:53::i;:::-;13359:60;13197:230;-1:-1:-1;;;;13197:230:0:o;14685:1020::-;14858:12;14891:18;14902:6;14891:10;:18::i;:::-;14883:60;;;;;-1:-1:-1;;;14883:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15017:12;15031:23;15058:6;-1:-1:-1;;;;;15058:11:0;15077:8;15087:4;15058:34;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15058:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15016:76;;;;15107:7;15103:595;;;15138:10;-1:-1:-1;15131:17:0;;-1:-1:-1;15131:17:0;15103:595;15252:17;;:21;15248:439;;15515:10;15509:17;15576:15;15563:10;15559:2;15555:19;15548:44;15463:148;15658:12;15651:20;;-1:-1:-1;;;15651:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10060:641;10120:4;10601:20;;10431:66;10650:23;;;;;;:42;;-1:-1:-1;;10677:15:0;;;10642:51;-1:-1:-1;;10060:641:0:o
Swarm Source
ipfs://1dd0ddf04815d41adeed7bbaafac53acd49b9d8856828e2d3cc9aa16e10f4d37
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.