Contract
0x306e974624511e3937f37e551c5736f1b2ad21eb
4
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | ||
---|---|---|---|---|---|---|---|---|
0x6e67e8ac5c9bd62fba2417f45edf18e61ada68ceddd97e54ab7dca26d57bb1d6 | 0x60806040 | 41311972 | 218 days 17 hrs ago | Gitshock Finance: Deployer | IN | Create: GTFX | 0 FTM | 0.196794375245 |
[ Download CSV Export ]
OVERVIEW
Gitshock connects Blockchain developers and Open Edgeware software platforms that developers can use to create decentralized applications (DApps) on all networks.
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x6e67e8ac5c9bd62fba2417f45edf18e61ada68ceddd97e54ab7dca26d57bb1d6 | 41311972 | 218 days 17 hrs ago | Gitshock Finance: Deployer | Contract Creation | 0 FTM |
[ Download CSV Export ]
Contract Name:
GTFX
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2022-06-25 */ // SPDX-License-Identifier: MIT pragma solidity ^0.5.16; // ---------------------------------------------------------------------------- // 'GTFX' 'Gitshock Finance' FTM20 token contract // // Symbol : GTFX // Name : Gitshock Finance // Total supply: 50,000,000.000000000000000000 // Decimals : 18 // Website : https://gitshock.com // Security : [email protected] // Blockchain : GTX20 // Type : Native EVM Coin // ---------------------------------------------------------------------------- /* Invariant - price of trade and amount of liquidity are determined by this equation An^n sum(x_i) + D = ADn^n + D^(n + 1) / (n^n prod(x_i)) Topics 0. Newton's method x_(n + 1) = x_n - f(x_n) / f'(x_n) 1. Invariant 2. Swap - Calculate Y - Calculate D 3. Get virtual price 4. Add liquidity - Imbalance fee */ library Math { function abs(uint x, uint y) internal pure returns (uint) { return x >= y ? x - y : y - x; } } contract StableSwap { // Number of tokens uint private constant N = 3; // Amplification coefficient multiplied by N^(N - 1) // Higher value makes the curve more flat // Lower value makes the curve more like constant product AMM uint private constant A = 1000 * (N**(N - 1)); // 0.03% uint private constant SWAP_FEE = 300; // Liquidity fee is derived from 2 constraints // 1. Fee is 0 for adding / removing liquidity that results in a balanced pool // 2. Swapping in a balanced pool is like adding and then removing liquidity // from a balanced pool // swap fee = add liquidity fee + remove liquidity fee uint private constant LIQUIDITY_FEE = (SWAP_FEE * N) / (4 * (N - 1)); uint private constant FEE_DENOMINATOR = 1e6; address[N] public tokens; // Normalize each token to 18 decimals // Example - DAI (18 decimals), USDC (6 decimals), USDT (6 decimals) uint[N] private multipliers = [1, 1e12, 1e12]; uint[N] public balances; // 1 share = 1e18, 18 decimals uint private constant DECIMALS = 18; uint public totalSupply; mapping(address => uint) public balanceOf; function _mint(address _to, uint _amount) private { balanceOf[_to] += _amount; totalSupply += _amount; } function _burn(address _from, uint _amount) private { balanceOf[_from] -= _amount; totalSupply -= _amount; } // Return precision-adjusted balances, adjusted to 18 decimals function _xp() private view returns (uint[N] memory xp) { for (uint i; i < N; ++i) { xp[i] = balances[i] * multipliers[i]; } } /** * @notice Calculate D, sum of balances in a perfectly balanced pool * If balances of x_0, x_1, ... x_(n-1) then sum(x_i) = D * @param xp Precision-adjusted balances * @return D */ function _getD(uint[N] memory xp) private pure returns (uint) { /* Newton's method to compute D ----------------------------- f(D) = ADn^n + D^(n + 1) / (n^n prod(x_i)) - An^n sum(x_i) - D f'(D) = An^n + (n + 1) D^n / (n^n prod(x_i)) - 1 (as + np)D_n D_(n+1) = ----------------------- (a - 1)D_n + (n + 1)p a = An^n s = sum(x_i) p = (D_n)^(n + 1) / (n^n prod(x_i)) */ uint a = A * N; // An^n uint s; // x_0 + x_1 + ... + x_(n-1) for (uint i; i < N; ++i) { s += xp[i]; } // Newton's method // Initial guess, d <= s uint d = s; uint d_prev; for (uint i; i < 255; ++i) { // p = D^(n + 1) / (n^n * x_0 * ... * x_(n-1)) uint p = d; for (uint j; j < N; ++j) { p = (p * d) / (N * xp[j]); } d_prev = d; d = ((a * s + N * p) * d) / ((a - 1) * d + (N + 1) * p); if (Math.abs(d, d_prev) <= 1) { return d; } } revert("D didn't converge"); } /** * @notice Calculate the new balance of token j given the new balance of token i * @param i Index of token in * @param j Index of token out * @param x New balance of token i * @param xp Current precision-adjusted balances */ function _getY( uint i, uint j, uint x, uint[N] memory xp ) private pure returns (uint) { /* Newton's method to compute y ----------------------------- y = x_j f(y) = y^2 + y(b - D) - c y_n^2 + c y_(n+1) = -------------- 2y_n + b - D where s = sum(x_k), k != j p = prod(x_k), k != j b = s + D / (An^n) c = D^(n + 1) / (n^n * p * An^n) */ uint a = A * N; uint d = _getD(xp); uint s; uint c = d; uint _x; for (uint k; k < N; ++k) { if (k == i) { _x = x; } else if (k == j) { continue; } else { _x = xp[k]; } s += _x; c = (c * d) / (N * _x); } c = (c * d) / (N * a); uint b = s + d / a; // Newton's method uint y_prev; // Initial guess, y <= d uint y = d; for (uint _i; _i < 255; ++_i) { y_prev = y; y = (y * y + c) / (2 * y + b - d); if (Math.abs(y, y_prev) <= 1) { return y; } } revert("y didn't converge"); } /** * @notice Calculate the new balance of token i given precision-adjusted * balances xp and liquidity d * @dev Equation is calculate y is same as _getY * @param i Index of token to calculate the new balance * @param xp Precision-adjusted balances * @param d Liquidity d * @return New balance of token i */ function _getYD( uint i, uint[N] memory xp, uint d ) private pure returns (uint) { uint a = A * N; uint s; uint c = d; uint _x; for (uint k; k < N; ++k) { if (k != i) { _x = xp[k]; } else { continue; } s += _x; c = (c * d) / (N * _x); } c = (c * d) / (N * a); uint b = s + d / a; // Newton's method uint y_prev; // Initial guess, y <= d uint y = d; for (uint _i; _i < 255; ++_i) { y_prev = y; y = (y * y + c) / (2 * y + b - d); if (Math.abs(y, y_prev) <= 1) { return y; } } revert("y didn't converge"); } // Estimate value of 1 share // How many tokens is one share worth? function getVirtualPrice() external view returns (uint) { uint d = _getD(_xp()); uint _totalSupply = totalSupply; if (_totalSupply > 0) { return (d * 10**DECIMALS) / _totalSupply; } return 0; } /** * @notice Swap dx amount of token i for token j * @param i Index of token in * @param j Index of token out * @param dx Token in amount * @param minDy Minimum token out */ function swap( uint i, uint j, uint dx, uint minDy ) external returns (uint dy) { require(i != j, "i = j"); IERC20(tokens[i]).transferFrom(msg.sender, address(this), dx); // Calculate dy uint[N] memory xp = _xp(); uint x = xp[i] + dx * multipliers[i]; uint y0 = xp[j]; uint y1 = _getY(i, j, x, xp); // y0 must be >= y1, since x has increased // -1 to round down dy = (y0 - y1 - 1) / multipliers[j]; // Subtract fee from dy uint fee = (dy * SWAP_FEE) / FEE_DENOMINATOR; dy -= fee; require(dy >= minDy, "dy < min"); balances[i] += dx; balances[j] -= dy; IERC20(tokens[j]).transfer(msg.sender, dy); } function addLiquidity(uint[N] calldata amounts, uint minShares) external returns (uint shares) { // calculate current liquidity d0 uint _totalSupply = totalSupply; uint d0; uint[N] memory old_xs = _xp(); if (_totalSupply > 0) { d0 = _getD(old_xs); } // Transfer tokens in uint[N] memory new_xs; for (uint i; i < N; ++i) { uint amount = amounts[i]; if (amount > 0) { IERC20(tokens[i]).transferFrom(msg.sender, address(this), amount); new_xs[i] = old_xs[i] + amount * multipliers[i]; } else { new_xs[i] = old_xs[i]; } } // Calculate new liquidity d1 uint d1 = _getD(new_xs); require(d1 > d0, "liquidity didn't increase"); // Reccalcuate D accounting for fee on imbalance uint d2; if (_totalSupply > 0) { for (uint i; i < N; ++i) { // TODO: why old_xs[i] * d1 / d0? why not d1 / N? uint idealBalance = (old_xs[i] * d1) / d0; uint diff = Math.abs(new_xs[i], idealBalance); new_xs[i] -= (LIQUIDITY_FEE * diff) / FEE_DENOMINATOR; } d2 = _getD(new_xs); } else { d2 = d1; } // Update balances for (uint i; i < N; ++i) { balances[i] += amounts[i]; } // Shares to mint = (d2 - d0) / d0 * total supply // d1 >= d2 >= d0 if (_totalSupply > 0) { shares = ((d2 - d0) * _totalSupply) / d0; } else { shares = d2; } require(shares >= minShares, "shares < min"); _mint(msg.sender, shares); } function removeLiquidity(uint shares, uint[N] calldata minAmountsOut) external returns (uint[N] memory amountsOut) { uint _totalSupply = totalSupply; for (uint i; i < N; ++i) { uint amountOut = (balances[i] * shares) / _totalSupply; require(amountOut >= minAmountsOut[i], "out < min"); balances[i] -= amountOut; amountsOut[i] = amountOut; IERC20(tokens[i]).transfer(msg.sender, amountOut); } _burn(msg.sender, shares); } /** * @notice Calculate amount of token i to receive for shares * @param shares Shares to burn * @param i Index of token to withdraw * @return dy Amount of token i to receive * fee Fee for withdraw. Fee already included in dy */ function _calcWithdrawOneToken(uint shares, uint i) private view returns (uint dy, uint fee) { uint _totalSupply = totalSupply; uint[N] memory xp = _xp(); // Calculate d0 and d1 uint d0 = _getD(xp); uint d1 = d0 - (d0 * shares) / _totalSupply; // Calculate reduction in y if D = d1 uint y0 = _getYD(i, xp, d1); // d1 <= d0 so y must be <= xp[i] uint dy0 = (xp[i] - y0) / multipliers[i]; // Calculate imbalance fee, update xp with fees uint dx; for (uint j; j < N; ++j) { if (j == i) { dx = (xp[j] * d1) / d0 - y0; } else { // d1 / d0 <= 1 dx = xp[j] - (xp[j] * d1) / d0; } xp[j] -= (LIQUIDITY_FEE * dx) / FEE_DENOMINATOR; } // Recalculate y with xp including imbalance fees uint y1 = _getYD(i, xp, d1); // - 1 to round down dy = (xp[i] - y1 - 1) / multipliers[i]; fee = dy0 - dy; } function calcWithdrawOneToken(uint shares, uint i) external view returns (uint dy, uint fee) { return _calcWithdrawOneToken(shares, i); } /** * @notice Withdraw liquidity in token i * @param shares Shares to burn * @param i Token to withdraw * @param minAmountOut Minimum amount of token i that must be withdrawn */ function removeLiquidityOneToken( uint shares, uint i, uint minAmountOut ) external returns (uint amountOut) { (amountOut, ) = _calcWithdrawOneToken(shares, i); require(amountOut >= minAmountOut, "out < min"); balances[i] -= amountOut; _burn(msg.sender, shares); IERC20(tokens[i]).transfer(msg.sender, amountOut); } } interface IERC20 { function totalSupply() external view returns (uint); function balanceOf(address account) external view returns (uint); function transfer(address recipient, uint amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint amount) external returns (bool); function transferFrom( address sender, address recipient, uint amount ) external returns (bool); event Transfer(address indexed from, address indexed to, uint amount); event Approval(address indexed owner, address indexed spender, uint amount); } contract TestUniswapLiquidity { address private constant FACTORY = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f; address private constant ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address private constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; function addLiquidity( address _tokenA, address _tokenB, uint _amountA, uint _amountB ) external { IERC20(_tokenA).transferFrom(msg.sender, address(this), _amountA); IERC20(_tokenB).transferFrom(msg.sender, address(this), _amountB); IERC20(_tokenA).approve(ROUTER, _amountA); IERC20(_tokenB).approve(ROUTER, _amountB); (uint amountA, uint amountB, uint liquidity) = IUniswapV2Router(ROUTER) .addLiquidity( _tokenA, _tokenB, _amountA, _amountB, 1, 1, address(this), block.timestamp ); } function removeLiquidity(address _tokenA, address _tokenB) external { address pair = IUniswapV2Factory(FACTORY).getPair(_tokenA, _tokenB); uint liquidity = IERC20(pair).balanceOf(address(this)); IERC20(pair).approve(ROUTER, liquidity); (uint amountA, uint amountB) = IUniswapV2Router(ROUTER).removeLiquidity( _tokenA, _tokenB, liquidity, 1, 1, address(this), block.timestamp ); } } interface IUniswapV2Router { function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns ( uint amountA, uint amountB, uint liquidity ); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); } interface IUniswapV2Factory { function getPair(address token0, address token1) external view returns (address); } /** * @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) { return add(a, b, "SafeMath: addition 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 add(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, errorMessage); 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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface BEP20Interface { /** * @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); } contract Tokenlock is Ownable { /// @notice Indicates if token is locked uint8 isLocked = 0; event Freezed(); event UnFreezed(); modifier validLock { require(isLocked == 0, "Token is locked"); _; } function freeze() public onlyOwner { isLocked = 1; emit Freezed(); } function unfreeze() public onlyOwner { isLocked = 0; emit UnFreezed(); } } // ---------------------------------------------------------------------------- // Contract function to receive approval and execute function in one call // // Borrowed from MiniMeToken // ---------------------------------------------------------------------------- contract ApproveAndCallFallBack { function receiveApproval(address from, uint256 tokens, address token, bytes memory data) public; } // ---------------------------------------------------------------------------- // Limit users in blacklist // ---------------------------------------------------------------------------- contract UserLock is Ownable { mapping(address => bool) blacklist; event LockUser(address indexed who); event UnlockUser(address indexed who); modifier permissionCheck { require(!blacklist[msg.sender], "Blocked user"); _; } function lockUser(address who) public onlyOwner { blacklist[who] = true; emit LockUser(who); } function unlockUser(address who) public onlyOwner { blacklist[who] = false; emit UnlockUser(who); } } contract GTFX is BEP20Interface, Tokenlock, UserLock { using SafeMath for uint256; /// @notice Official record of token balances for each account mapping (address => uint256) private _balances; /// @notice Allowance amounts on behalf of others mapping (address => mapping (address => uint256)) private _allowances; /// @notice Total number of tokens in circulation uint256 private _totalSupply; /// @notice BEP-20 token decimals for this token uint8 private _decimals; /// @notice BEP-20 token symbol for this token string private _symbol; /// @notice BEP-20 token name for this token string private _name; /// @notice A record of each accounts delegate mapping (address => address) public delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint256) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance); /// @notice The standard BEP-20 transfer event event Transfer(address indexed from, address indexed to, uint256 amount); /// @notice The standard BEP-20 approval event event Approval(address indexed owner, address indexed spender, uint256 amount); /** * @notice Construct a new GTFX Mainnet EVM token * @param account The initial account to grant all the tokens */ constructor(address account) public { _name = "Gitshock Finance"; _symbol = "GTFX"; _decimals = 18; _totalSupply = 50000000e18; _balances[account] = _totalSupply; emit Transfer(address(0), account, _totalSupply); } /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address) { return owner(); } /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external view returns (string memory) { return _name; } /** * @dev Returns the total supply. */ function totalSupply() external view returns (uint256) { return _totalSupply; } /** * @notice Get the number of tokens held by the `account` * @param account The address of the account to get the balance of * @return The number of tokens held */ function balanceOf(address account) external view returns (uint256) { return _balances[account]; } /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param recipient The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transfer(address recipient, uint256 amount) external validLock permissionCheck returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @notice Get the number of tokens `spender` is approved to spend on behalf of `account` * @param owner The address of the account holding the funds * @param spender The address of the account spending the funds * @return The number of tokens approved */ function allowance(address owner, address spender) external view returns (uint256) { return _allowances[owner][spender]; } /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * @param spender The address of the account which may transfer tokens * @param amount The number of tokens that are approved (2^256-1 means infinite) * @return Whether or not the approval succeeded */ function approve(address spender, uint256 amount) external validLock permissionCheck returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @notice Approve the spender to transferFrom(...) with the amount. * @dev receiveApproval(...) is executed. * @param amount The number of tokens that are approved * @param data The data to pass to receiveApproval(...) * @return true */ function approveAndCall(address spender, uint256 amount, bytes memory data) public validLock permissionCheck returns (bool) { _approve(_msgSender(), spender, amount); ApproveAndCallFallBack(spender).receiveApproval(_msgSender(), amount, address(this), data); return true; } /** * @notice Transfer `amount` tokens from `src` to `dst` * @param sender The address of the source account * @param recipient The address of the destination account * @param amount The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferFrom(address sender, address recipient, uint256 amount) external validLock permissionCheck returns (bool) { _transfer(sender, recipient, amount); address spender = _msgSender(); uint256 spenderAllowance = _allowances[sender][spender]; if (spenderAllowance != uint256(-1)) { _approve(sender, spender, spenderAllowance.sub(amount, "The transfer amount exceeds allowance")); } return true; } /** * @notice Atomically increases the allowance granted to `spender` by the caller * @dev This is an alternative to {approve} that can be used as a mitigation for * problems described in {BEP20-approve}. * @param spender The address of the account which may transfer tokens * @param addedValue The additional number of tokens to allow which may be spent * @return Whether or not the approval succeeded */ function increaseAllowance(address spender, uint256 addedValue) public validLock permissionCheck returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue, "The increased allowance overflows")); return true; } /** * @notice Atomically increases the allowance granted to `spender` by the caller * @dev This is an alternative to {approve} that can be used as a mitigation for * problems described in {BEP20-approve}. * @param spender The address of the account which may transfer tokens * @param subtractedValue The subtractional number of tokens to allow which may be spent * @return Whether or not the approval succeeded */ function decreaseAllowance(address spender, uint256 subtractedValue) public validLock permissionCheck returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "The decreased allowance below zero")); return true; } /** * @notice Destroy the amount of tokens from the sender, reducing the total supply. * @dev The amount must be greater than balance, total supply. * @param amount The number of tokens that are burnt * @return true */ function burn(uint256 amount) public validLock permissionCheck returns (bool) { _burn(_msgSender(), amount); return true; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) public validLock permissionCheck { return _delegate(_msgSender(), delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig(address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) public validLock permissionCheck { bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(_name)), getChainId(), address(this))); bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry)); bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "Invalid signature"); require(nonce == nonces[signatory]++, "Invalid nonce"); require(now <= expiry, "The signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint96) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? ceil96(checkpoints[account][nCheckpoints - 1].votes) : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint256 blockNumber) public view returns (uint96) { require(blockNumber < block.number, "Not determined yet"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return ceil96(checkpoints[account][nCheckpoints - 1].votes); } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return ceil96(cp.votes); } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return ceil96(checkpoints[account][lower].votes); } function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "Cannot transfer from the zero address"); require(recipient != address(0), "Cannot transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "The transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount, "The balance overflows"); emit Transfer(sender, recipient, amount); _moveDelegates(delegates[sender], delegates[recipient], amount); } function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "Cannot approve from the zero address"); require(spender != address(0), "Cannot approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _burn(address account, uint256 amount) internal { require(account != address(0), "Cannot burn from the zero address"); _balances[account] = _balances[account].sub(amount, "The burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); _moveDelegates(delegates[account], address(0), amount); } function _delegate(address delegator, address delegatee) internal { address currentDelegate = delegates[delegator]; uint256 delegatorBalance = _balances[delegator]; delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount, "The vote amount underflows"); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld.add(amount, "The vote amount overflows"); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes) internal { uint32 blockNumber = safe32(block.number, "The block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint256 n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function ceil96(uint256 n) internal pure returns (uint96) { if (n >= 2**96) { return uint96(-1); } return uint96(n); } function getChainId() internal pure returns (uint256) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"account","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"Freezed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"}],"name":"LockUser","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"UnFreezed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"who","type":"address"}],"name":"UnlockUser","type":"event"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"freeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"lockUser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unfreeze","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"unlockUser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000805460ff60a01b191690553480156200001e57600080fd5b506040516200298e3803806200298e833981810160405260208110156200004457600080fd5b505160006200005b6001600160e01b036200018416565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506040805180820190915260108082526f47697473686f636b2046696e616e636560801b6020909201918252620000de9160079162000189565b506040805180820190915260048082526308ea88cb60e31b60209092019182526200010c9160069162000189565b506005805460ff191660121790556a295be96e6406697200000060048190556001600160a01b0382166000818152600260209081526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3506200022b565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001cc57805160ff1916838001178555620001fc565b82800160010185558215620001fc579182015b82811115620001fc578251825591602001919060010190620001df565b506200020a9291506200020e565b5090565b6200018691905b808211156200020a576000815560010162000215565b612753806200023b6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063782d6fe11161010f578063bd1870a3116100a2578063dd62ed3e11610071578063dd62ed3e146106a4578063e7a324dc146106d2578063f1127ed8146106da578063f2fde38b1461072c576101e5565b8063bd1870a314610556578063c3cda5201461057c578063cae9ca51146105c3578063d79725801461067e576101e5565b806395d89b41116100de57806395d89b41146104d0578063a457c2d7146104d8578063a9059cbb14610504578063b4b5ea5714610530576101e5565b8063782d6fe11461044d5780637ecebe001461049a578063893d20e8146104c05780638da5cb5b146104c8576101e5565b806342966c68116101875780636a28f000116101565780636a28f000146103d85780636fcfff45146103e057806370a082311461041f578063715018a614610445576101e5565b806342966c6814610349578063587cde1e146103665780635c19a95c146103a857806362a5af3b146103d0576101e5565b806320606b70116101c357806320606b70146102c157806323b872dd146102c9578063313ce567146102ff578063395093511461031d576101e5565b806306fdde03146101ea578063095ea7b31461026757806318160ddd146102a7575b600080fd5b6101f2610752565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561027d57600080fd5b506001600160a01b0381351690602001356107e8565b604080519115158252519081900360200190f35b6102af6108aa565b60408051918252519081900360200190f35b6102af6108b0565b610293600480360360608110156102df57600080fd5b506001600160a01b038135811691602081013590911690604001356108cb565b6103076109f9565b6040805160ff9092168252519081900360200190f35b6102936004803603604081101561033357600080fd5b506001600160a01b038135169060200135610a02565b6102936004803603602081101561035f57600080fd5b5035610b14565b61038c6004803603602081101561037c57600080fd5b50356001600160a01b0316610bd4565b604080516001600160a01b039092168252519081900360200190f35b6103ce600480360360208110156103be57600080fd5b50356001600160a01b0316610bef565b005b6103ce610ca8565b6103ce610d3c565b610406600480360360208110156103f657600080fd5b50356001600160a01b0316610dca565b6040805163ffffffff9092168252519081900360200190f35b6102af6004803603602081101561043557600080fd5b50356001600160a01b0316610de2565b6103ce610dfd565b6104796004803603604081101561046357600080fd5b506001600160a01b038135169060200135610e9f565b604080516bffffffffffffffffffffffff9092168252519081900360200190f35b6102af600480360360208110156104b057600080fd5b50356001600160a01b03166110cd565b61038c6110df565b61038c6110ee565b6101f26110fd565b610293600480360360408110156104ee57600080fd5b506001600160a01b03813516906020013561115e565b6102936004803603604081101561051a57600080fd5b506001600160a01b038135169060200135611270565b6104796004803603602081101561054657600080fd5b50356001600160a01b0316611328565b6103ce6004803603602081101561056c57600080fd5b50356001600160a01b0316611394565b6103ce600480360360c081101561059257600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611435565b610293600480360360608110156105d957600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561060957600080fd5b82018360208201111561061b57600080fd5b8035906020019184600183028401116401000000008311171561063d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506117c9945050505050565b6103ce6004803603602081101561069457600080fd5b50356001600160a01b031661198e565b6102af600480360360408110156106ba57600080fd5b506001600160a01b0381358116916020013516611a35565b6102af611a60565b61070c600480360360408110156106f057600080fd5b5080356001600160a01b0316906020013563ffffffff16611a7b565b6040805163ffffffff909316835260208301919091528051918290030190f35b6103ce6004803603602081101561074257600080fd5b50356001600160a01b0316611aa8565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60008054600160a01b900460ff161561083a576040805162461bcd60e51b815260206004820152600f60248201526e151bdad95b881a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b3360009081526001602052604090205460ff161561088e576040805162461bcd60e51b815260206004820152600c60248201526b213637b1b5b2b2103ab9b2b960a11b604482015290519081900360640190fd5b6108a0610899611b09565b8484611b0d565b5060015b92915050565b60045490565b60405180604361261982396043019050604051809103902081565b60008054600160a01b900460ff161561091d576040805162461bcd60e51b815260206004820152600f60248201526e151bdad95b881a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b3360009081526001602052604090205460ff1615610971576040805162461bcd60e51b815260206004820152600c60248201526b213637b1b5b2b2103ab9b2b960a11b604482015290519081900360640190fd5b61097c848484611bf9565b6000610986611b09565b6001600160a01b0380871660009081526003602090815260408083209385168352929052205490915060001981146109ed576109ed86836109e8876040518060600160405280602581526020016125f46025913986919063ffffffff611db816565b611b0d565b50600195945050505050565b60055460ff1690565b60008054600160a01b900460ff1615610a54576040805162461bcd60e51b815260206004820152600f60248201526e151bdad95b881a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b3360009081526001602052604090205460ff1615610aa8576040805162461bcd60e51b815260206004820152600c60248201526b213637b1b5b2b2103ab9b2b960a11b604482015290519081900360640190fd5b6108a0610ab3611b09565b846109e8856040518060600160405280602181526020016125446021913960036000610add611b09565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611e4f16565b60008054600160a01b900460ff1615610b66576040805162461bcd60e51b815260206004820152600f60248201526e151bdad95b881a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b3360009081526001602052604090205460ff1615610bba576040805162461bcd60e51b815260206004820152600c60248201526b213637b1b5b2b2103ab9b2b960a11b604482015290519081900360640190fd5b610bcb610bc5611b09565b83611ead565b5060015b919050565b6008602052600090815260409020546001600160a01b031681565b600054600160a01b900460ff1615610c40576040805162461bcd60e51b815260206004820152600f60248201526e151bdad95b881a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b3360009081526001602052604090205460ff1615610c94576040805162461bcd60e51b815260206004820152600c60248201526b213637b1b5b2b2103ab9b2b960a11b604482015290519081900360640190fd5b610ca5610c9f611b09565b82611fed565b50565b610cb0611b09565b6000546001600160a01b03908116911614610d00576040805162461bcd60e51b8152602060048201819052602482015260008051602061265c833981519152604482015290519081900360640190fd5b6000805460ff60a01b1916600160a01b1781556040517f962a6139ca22015759d0878e2cf5d770dcb8152e1d5ba08e46a969dd9b154a9c9190a1565b610d44611b09565b6000546001600160a01b03908116911614610d94576040805162461bcd60e51b8152602060048201819052602482015260008051602061265c833981519152604482015290519081900360640190fd5b6000805460ff60a01b191681556040517ff0daac2271a735ea786b9adf80dfcbd6a3cbd52f3cab0a78337114692d5faf5d9190a1565b600a6020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526002602052604090205490565b610e05611b09565b6000546001600160a01b03908116911614610e55576040805162461bcd60e51b8152602060048201819052602482015260008051602061265c833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000438210610eea576040805162461bcd60e51b8152602060048201526012602482015271139bdd0819195d195c9b5a5b9959081e595d60721b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205463ffffffff1680610f185760009150506108a4565b6001600160a01b038416600090815260096020908152604080832063ffffffff600019860181168552925290912054168310610f90576001600160a01b038416600090815260096020908152604080832063ffffffff6000198601168452909152902060010154610f889061206d565b9150506108a4565b6001600160a01b038416600090815260096020908152604080832083805290915290205463ffffffff16831015610fcb5760009150506108a4565b600060001982015b8163ffffffff168163ffffffff16111561108d57600282820363ffffffff16048103610ffd61250a565b506001600160a01b038716600090815260096020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156110685761105c816020015161206d565b955050505050506108a4565b805163ffffffff1687111561107f57819350611086565b6001820392505b5050610fd3565b6001600160a01b038616600090815260096020908152604080832063ffffffff861684529091529020600101546110c39061206d565b9695505050505050565b600b6020526000908152604090205481565b60006110e96110ee565b905090565b6000546001600160a01b031690565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107de5780601f106107b3576101008083540402835291602001916107de565b60008054600160a01b900460ff16156111b0576040805162461bcd60e51b815260206004820152600f60248201526e151bdad95b881a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b3360009081526001602052604090205460ff1615611204576040805162461bcd60e51b815260206004820152600c60248201526b213637b1b5b2b2103ab9b2b960a11b604482015290519081900360640190fd5b6108a061120f611b09565b846109e8856040518060600160405280602281526020016125d26022913960036000611239611b09565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611db816565b60008054600160a01b900460ff16156112c2576040805162461bcd60e51b815260206004820152600f60248201526e151bdad95b881a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b3360009081526001602052604090205460ff1615611316576040805162461bcd60e51b815260206004820152600c60248201526b213637b1b5b2b2103ab9b2b960a11b604482015290519081900360640190fd5b6108a0611321611b09565b8484611bf9565b6001600160a01b0381166000908152600a602052604081205463ffffffff168061135357600061138d565b6001600160a01b038316600090815260096020908152604080832063ffffffff600019860116845290915290206001015461138d9061206d565b9392505050565b61139c611b09565b6000546001600160a01b039081169116146113ec576040805162461bcd60e51b8152602060048201819052602482015260008051602061265c833981519152604482015290519081900360640190fd5b6001600160a01b038116600081815260016020526040808220805460ff19169055517f687691c08a3e67a160ba20a32cb1c56791955f12c5ff5d5fcf62bc456ad79ea19190a250565b600054600160a01b900460ff1615611486576040805162461bcd60e51b815260206004820152600f60248201526e151bdad95b881a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b3360009081526001602052604090205460ff16156114da576040805162461bcd60e51b815260206004820152600c60248201526b213637b1b5b2b2103ab9b2b960a11b604482015290519081900360640190fd5b600060405180806126196043913960430190506040518091039020600760405180828054600181600116156101000203166002900480156115525780601f10611530576101008083540402835291820191611552565b820191906000526020600020905b81548152906001019060200180831161153e575b50509150506040518091039020611567612087565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b03168152602001945050505050604051602081830303815290604052805190602001209050600060405180806126c4603a91396040805191829003603a0182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa1580156116a5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611701576040805162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b604482015290519081900360640190fd5b6001600160a01b0381166000908152600b602052604090208054600181019091558914611765576040805162461bcd60e51b815260206004820152600d60248201526c496e76616c6964206e6f6e636560981b604482015290519081900360640190fd5b874211156117b2576040805162461bcd60e51b8152602060048201526015602482015274151a19481cda59db985d1d5c9948195e1c1a5c9959605a1b604482015290519081900360640190fd5b6117bc818b611fed565b505050505b505050505050565b60008054600160a01b900460ff161561181b576040805162461bcd60e51b815260206004820152600f60248201526e151bdad95b881a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b3360009081526001602052604090205460ff161561186f576040805162461bcd60e51b815260206004820152600c60248201526b213637b1b5b2b2103ab9b2b960a11b604482015290519081900360640190fd5b61188161187a611b09565b8585611b0d565b836001600160a01b0316638f4ffcb1611898611b09565b8530866040518563ffffffff1660e01b815260040180856001600160a01b03166001600160a01b03168152602001848152602001836001600160a01b03166001600160a01b0316815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561191d578181015183820152602001611905565b50505050905090810190601f16801561194a5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561196c57600080fd5b505af1158015611980573d6000803e3d6000fd5b506001979650505050505050565b611996611b09565b6000546001600160a01b039081169116146119e6576040805162461bcd60e51b8152602060048201819052602482015260008051602061265c833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600160208190526040808320805460ff1916909217909155517f169aadf55dc2098830ccf9f334e3ce3933b6e895b9114fc9f49242f2be61fe8e9190a250565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b60405180603a6126c48239603a019050604051809103902081565b60096020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b611ab0611b09565b6000546001600160a01b03908116911614611b00576040805162461bcd60e51b8152602060048201819052602482015260008051602061265c833981519152604482015290519081900360640190fd5b610ca58161208b565b3390565b6001600160a01b038316611b525760405162461bcd60e51b815260040180806020018281038252602481526020018061258b6024913960400191505060405180910390fd5b6001600160a01b038216611b975760405162461bcd60e51b81526004018080602001828103825260228152602001806125226022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611c3e5760405162461bcd60e51b815260040180806020018281038252602581526020018061267c6025913960400191505060405180910390fd5b6001600160a01b038216611c835760405162461bcd60e51b81526004018080602001828103825260238152602001806126a16023913960400191505060405180910390fd5b611cc6816040518060600160405280602381526020016125af602391396001600160a01b038616600090815260026020526040902054919063ffffffff611db816565b6001600160a01b038085166000908152600260208181526040808420959095558451808601865260158152745468652062616c616e6365206f766572666c6f777360581b818301529387168352529190912054611d2a91839063ffffffff611e4f16565b6001600160a01b0380841660008181526002602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a36001600160a01b03808416600090815260086020526040808220548584168352912054611db39291821691168361212b565b505050565b60008184841115611e475760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e0c578181015183820152602001611df4565b50505050905090810190601f168015611e395780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008383018285821015611ea45760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611e0c578181015183820152602001611df4565b50949350505050565b6001600160a01b038216611ef25760405162461bcd60e51b81526004018080602001828103825260218152602001806126fe6021913960400191505060405180910390fd5b604080518082018252601f81527f546865206275726e20616d6f756e7420657863656564732062616c616e6365006020808301919091526001600160a01b038516600090815260029091529190912054611f5391839063ffffffff611db816565b6001600160a01b038316600090815260026020526040902055600454611f7f908263ffffffff6122e816565b6004556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a36001600160a01b03808316600090815260086020526040812054611fe99216908361212b565b5050565b6001600160a01b03808316600081815260086020818152604080842080546002845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461206782848361212b565b50505050565b6000600160601b82106120835750600019610bcf565b5090565b4690565b6001600160a01b0381166120d05760405162461bcd60e51b81526004018080602001828103825260268152602001806125656026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b816001600160a01b0316836001600160a01b03161415801561214d5750600081115b15611db3576001600160a01b0383161561221f576001600160a01b0383166000908152600a602052604081205463ffffffff16908161218d5760006121bf565b6001600160a01b038516600090815260096020908152604080832063ffffffff60001987011684529091529020600101545b9050600061220d846040518060400160405280601a81526020017f54686520766f746520616d6f756e7420756e646572666c6f777300000000000081525084611db89092919063ffffffff16565b905061221b8684848461232a565b5050505b6001600160a01b03821615611db3576001600160a01b0382166000908152600a602052604081205463ffffffff16908161225a57600061228c565b6001600160a01b038416600090815260096020908152604080832063ffffffff60001987011684529091529020600101545b905060006122da846040518060400160405280601981526020017f54686520766f746520616d6f756e74206f766572666c6f77730000000000000081525084611e4f9092919063ffffffff16565b90506117c18584848461232a565b600061138d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611db8565b600061236b436040518060400160405280602081526020017f54686520626c6f636b206e756d626572206578636565647320333220626974738152506124ac565b905060008463ffffffff161180156123b457506001600160a01b038516600090815260096020908152604080832063ffffffff6000198901811685529252909120548282169116145b156123f1576001600160a01b038516600090815260096020908152604080832063ffffffff60001989011684529091529020600101829055612462565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600984528681208b8616825284528681209551865490861663ffffffff199182161787559251600196870155908152600a9092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106125025760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611e0c578181015183820152602001611df4565b509192915050565b60408051808201909152600080825260208201529056fe43616e6e6f7420617070726f766520746f20746865207a65726f206164647265737354686520696e6372656173656420616c6c6f77616e6365206f766572666c6f77734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737343616e6e6f7420617070726f76652066726f6d20746865207a65726f2061646472657373546865207472616e7366657220616d6f756e7420657863656564732062616c616e63655468652064656372656173656420616c6c6f77616e63652062656c6f77207a65726f546865207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e7472616374294f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657243616e6e6f74207472616e736665722066726f6d20746865207a65726f206164647265737343616e6e6f74207472616e7366657220746f20746865207a65726f206164647265737344656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e74323536206578706972792943616e6e6f74206275726e2066726f6d20746865207a65726f2061646472657373a265627a7a72315820c0c052ae16abb6a222f2b8eadaa10485e3075b6cb1ce3bd8d201ebdaa64b464464736f6c63430005110032000000000000000000000000cd27c6f77670f09907093632dbb4f1587b177435
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000cd27c6f77670f09907093632dbb4f1587b177435
-----Decoded View---------------
Arg [0] : account (address): 0xcd27c6f77670f09907093632dbb4f1587b177435
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000cd27c6f77670f09907093632dbb4f1587b177435
Deployed ByteCode Sourcemap
29425:15981:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29425:15981:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32774:85;;;:::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;32774:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34603:180;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34603:180:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32923:93;;;:::i;:::-;;;;;;;;;;;;;;;;30719:122;;;:::i;35694:477::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35694:477:0;;;;;;;;;;;;;;;;;:::i;32474:85::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36632:273;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36632:273:0;;;;;;;;:::i;37920:146::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37920:146:0;;:::i;30168:45::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30168:45:0;-1:-1:-1;;;;;30168:45:0;;:::i;:::-;;;;-1:-1:-1;;;;;30168:45:0;;;;;;;;;;;;;;38214:130;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38214:130:0;-1:-1:-1;;;;;38214:130:0;;:::i;:::-;;28036:101;;;:::i;28145:105::-;;;:::i;30597:49::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30597:49:0;-1:-1:-1;;;;;30597:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;33219:112;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33219:112:0;-1:-1:-1;;;;;33219:112:0;;:::i;24110:130::-;;;:::i;40403:1224::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;40403:1224:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31133:42;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31133:42:0;-1:-1:-1;;;;;31133:42:0;;:::i;32323:85::-;;;:::i;23508:73::-;;;:::i;32623:89::-;;;:::i;37374:284::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37374:284:0;;;;;;;;:::i;33598:186::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33598:186:0;;;;;;;;:::i;39742:230::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39742:230:0;-1:-1:-1;;;;;39742:230:0;;:::i;29286:132::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29286:132:0;-1:-1:-1;;;;;29286:132:0;;:::i;38778:763::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;38778:763:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;35073:305::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;35073:305:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;35073:305:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;35073:305:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;35073:305:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;35073:305:0;;-1:-1:-1;35073:305:0;;-1:-1:-1;;;;;35073:305:0:i;29151:127::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29151:127:0;-1:-1:-1;;;;;29151:127:0;;:::i;34086:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34086:136:0;;;;;;;;;;:::i;30935:117::-;;;:::i;30458:70::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30458:70:0;;-1:-1:-1;;;;;30458:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;24385:103;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24385:103:0;-1:-1:-1;;;;;24385:103:0;;:::i;32774:85::-;32846:5;32839:12;;;;;;;;-1:-1:-1;;32839:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32813:13;;32839:12;;32846:5;;32839:12;;32846:5;32839:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32774:85;:::o;34603:180::-;34697:4;27971:8;;-1:-1:-1;;;27971:8:0;;;;:13;27963:41;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;;;;29091:10;29081:21;;;;:9;:21;;;;;;;;29080:22;29072:47;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;;;;34714:39;34723:12;:10;:12::i;:::-;34737:7;34746:6;34714:8;:39::i;:::-;-1:-1:-1;34771:4:0;29130:1;34603:180;;;;:::o;32923:93::-;32996:12;;32923:93;:::o;30719:122::-;30761:80;;;;;;;;;;;;;;;;;;30719:122;:::o;35694:477::-;35811:4;27971:8;;-1:-1:-1;;;27971:8:0;;;;:13;27963:41;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;;;;29091:10;29081:21;;;;:9;:21;;;;;;;;29080:22;29072:47;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;;;;35828:36;35838:6;35846:9;35857:6;35828:9;:36::i;:::-;35875:15;35893:12;:10;:12::i;:::-;-1:-1:-1;;;;;35943:19:0;;;35916:24;35943:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;35875:30;;-1:-1:-1;;;35986:31:0;;35982:160;;36034:96;36043:6;36051:7;36060:69;36081:6;36060:69;;;;;;;;;;;;;;;;;:16;;:69;;:20;:69;:::i;:::-;36034:8;:96::i;:::-;-1:-1:-1;36159:4:0;;35694:477;-1:-1:-1;;;;;35694:477:0:o;32474:85::-;32542:9;;;;32474:85;:::o;36632:273::-;36738:4;27971:8;;-1:-1:-1;;;27971:8:0;;;;:13;27963:41;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;;;;29091:10;29081:21;;;;:9;:21;;;;;;;;29080:22;29072:47;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;;;;36755:120;36764:12;:10;:12::i;:::-;36778:7;36787:87;36826:10;36787:87;;;;;;;;;;;;;;;;;:11;:25;36799:12;:10;:12::i;:::-;-1:-1:-1;;;;;36787:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;36787:25:0;;;:34;;;;;;;;;;;:87;;:38;:87;:::i;37920:146::-;37992:4;27971:8;;-1:-1:-1;;;27971:8:0;;;;:13;27963:41;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;;;;29091:10;29081:21;;;;:9;:21;;;;;;;;29080:22;29072:47;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;;;;38009:27;38015:12;:10;:12::i;:::-;38029:6;38009:5;:27::i;:::-;-1:-1:-1;38054:4:0;29130:1;37920:146;;;:::o;30168:45::-;;;;;;;;;;;;-1:-1:-1;;;;;30168:45:0;;:::o;38214:130::-;27971:8;;-1:-1:-1;;;27971:8:0;;;;:13;27963:41;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;;;;29091:10;29081:21;;;;:9;:21;;;;;;;;29080:22;29072:47;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;;;;38302:34;38312:12;:10;:12::i;:::-;38326:9;38302;:34::i;:::-;38214:130;:::o;28036:101::-;23712:12;:10;:12::i;:::-;23702:6;;-1:-1:-1;;;;;23702:6:0;;;:22;;;23694:67;;;;;-1:-1:-1;;;23694:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23694:67:0;;;;;;;;;;;;;;;28082:8;:12;;-1:-1:-1;;;;28082:12:0;-1:-1:-1;;;28082:12:0;;;28120:9;;;;28082:8;28120:9;28036:101::o;28145:105::-;23712:12;:10;:12::i;:::-;23702:6;;-1:-1:-1;;;;;23702:6:0;;;:22;;;23694:67;;;;;-1:-1:-1;;;23694:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23694:67:0;;;;;;;;;;;;;;;28204:1;28193:12;;-1:-1:-1;;;;28193:12:0;;;28231:11;;;;28204:1;28231:11;28145:105::o;30597:49::-;;;;;;;;;;;;;;;:::o;33219:112::-;-1:-1:-1;;;;;33305:18:0;33278:7;33305:18;;;:9;:18;;;;;;;33219:112::o;24110:130::-;23712:12;:10;:12::i;:::-;23702:6;;-1:-1:-1;;;;;23702:6:0;;;:22;;;23694:67;;;;;-1:-1:-1;;;23694:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23694:67:0;;;;;;;;;;;;;;;24205:1;24189:6;;24168:40;;-1:-1:-1;;;;;24189:6:0;;;;24168:40;;24205:1;;24168:40;24232:1;24215:19;;-1:-1:-1;;;;;;24215:19:0;;;24110:130::o;40403:1224::-;40485:6;40526:12;40512:11;:26;40504:57;;;;;-1:-1:-1;;;40504:57:0;;;;;;;;;;;;-1:-1:-1;;;40504:57:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40596:23:0;;40574:19;40596:23;;;:14;:23;;;;;;;;40634:17;40630:58;;40675:1;40668:8;;;;;40630:58;-1:-1:-1;;;;;40748:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;40769:16:0;;40748:38;;;;;;;;;:48;;:63;-1:-1:-1;40744:155:0;;-1:-1:-1;;;;;40842:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;40863:16:0;;40842:38;;;;;;;;40878:1;40842:44;;40835:52;;:6;:52::i;:::-;40828:59;;;;;40744:155;-1:-1:-1;;;;;40960:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;40956:88:0;;;41031:1;41024:8;;;;;40956:88;41056:12;-1:-1:-1;;41098:16:0;;41125:436;41140:5;41132:13;;:5;:13;;;41125:436;;;41204:1;41187:13;;;41186:19;;;41178:27;;41247:20;;:::i;:::-;-1:-1:-1;;;;;;41270:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;41247:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41317:27;;41313:237;;;41372:16;41379:2;:8;;;41372:6;:16::i;:::-;41365:23;;;;;;;;;41313:237;41414:12;;:26;;;-1:-1:-1;41410:140:0;;;41469:6;41461:14;;41410:140;;;41533:1;41524:6;:10;41516:18;;41410:140;41125:436;;;;;-1:-1:-1;;;;;41585:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;41578:41;;:6;:41::i;:::-;41571:48;40403:1224;-1:-1:-1;;;;;;40403:1224:0:o;31133:42::-;;;;;;;;;;;;;:::o;32323:85::-;32366:7;32393;:5;:7::i;:::-;32386:14;;32323:85;:::o;23508:73::-;23546:7;23569:6;-1:-1:-1;;;;;23569:6:0;23508:73;:::o;32623:89::-;32697:7;32690:14;;;;;;;;-1:-1:-1;;32690:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32664:13;;32690:14;;32697:7;;32690:14;;32697:7;32690:14;;;;;;;;;;;;;;;;;;;;;;;;37374:284;37485:4;27971:8;;-1:-1:-1;;;27971:8:0;;;;:13;27963:41;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;;;;29091:10;29081:21;;;;:9;:21;;;;;;;;29080:22;29072:47;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;;;;37502:126;37511:12;:10;:12::i;:::-;37525:7;37534:93;37573:15;37534:93;;;;;;;;;;;;;;;;;:11;:25;37546:12;:10;:12::i;:::-;-1:-1:-1;;;;;37534:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37534:25:0;;;:34;;;;;;;;;;;:93;;:38;:93;:::i;33598:186::-;33695:4;27971:8;;-1:-1:-1;;;27971:8:0;;;;:13;27963:41;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;;;;29091:10;29081:21;;;;:9;:21;;;;;;;;29080:22;29072:47;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;;;;33712:42;33722:12;:10;:12::i;:::-;33736:9;33747:6;33712:9;:42::i;39742:230::-;-1:-1:-1;;;;;39848:23:0;;39807:6;39848:23;;;:14;:23;;;;;;;;39889:16;:75;;39963:1;39889:75;;;-1:-1:-1;;;;;39915:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;39936:16:0;;39915:38;;;;;;;;39951:1;39915:44;;39908:52;;:6;:52::i;:::-;39882:82;39742:230;-1:-1:-1;;;39742:230:0:o;29286:132::-;23712:12;:10;:12::i;:::-;23702:6;;-1:-1:-1;;;;;23702:6:0;;;:22;;;23694:67;;;;;-1:-1:-1;;;23694:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23694:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29347:14:0;;29364:5;29347:14;;;:9;:14;;;;;;:22;;-1:-1:-1;;29347:22:0;;;29395:15;;;29364:5;29395:15;29286:132;:::o;38778:763::-;27971:8;;-1:-1:-1;;;27971:8:0;;;;:13;27963:41;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;;;;29091:10;29081:21;;;;:9;:21;;;;;;;;29080:22;29072:47;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;;;;38926:23;30761:80;;;;;;;;;;;;;;;;;;;39006:5;38990:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39015:12;:10;:12::i;:::-;39037:4;38962:81;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38962:81:0;-1:-1:-1;;;;;38962:81:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;38962:81:0;;;38952:92;;;;;;38926:118;;39055:18;30981:71;;;;;;;;;;;;;;;;;;;39086:57;;;;;;;;-1:-1:-1;;;;;39086:57:0;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;39086:57:0;;;;;39076:68;;;;;;-1:-1:-1;;;39182:57:0;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;39182:57:0;;;;;;39172:68;;;;;;;;;-1:-1:-1;39271:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39076:68;;-1:-1:-1;39172:68:0;;-1:-1:-1;;;39271:26:0;;;;;;;39086:57;-1:-1:-1;;39271:26:0;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;39271:26:0;;-1:-1:-1;;39271:26:0;;;-1:-1:-1;;;;;;;39316:23:0;;39308:53;;;;;-1:-1:-1;;;39308:53:0;;;;;;;;;;;;-1:-1:-1;;;39308:53:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;39389:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;39380:28;;39372:54;;;;;-1:-1:-1;;;39372:54:0;;;;;;;;;;;;-1:-1:-1;;;39372:54:0;;;;;;;;;;;;;;;39452:6;39445:3;:13;;39437:47;;;;;-1:-1:-1;;;39437:47:0;;;;;;;;;;;;-1:-1:-1;;;39437:47:0;;;;;;;;;;;;;;;39502:31;39512:9;39523;39502;:31::i;:::-;39495:38;;;;29130:1;38778:763;;;;;;:::o;35073:305::-;35191:4;27971:8;;-1:-1:-1;;;27971:8:0;;;;:13;27963:41;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;-1:-1:-1;;;27963:41:0;;;;;;;;;;;;;;;29091:10;29081:21;;;;:9;:21;;;;;;;;29080:22;29072:47;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;-1:-1:-1;;;29072:47:0;;;;;;;;;;;;;;;35208:39;35217:12;:10;:12::i;:::-;35231:7;35240:6;35208:8;:39::i;:::-;35281:7;-1:-1:-1;;;;;35258:47:0;;35306:12;:10;:12::i;:::-;35320:6;35336:4;35343;35258:90;;;;;;;;;;;;;-1:-1:-1;;;;;35258:90:0;-1:-1:-1;;;;;35258:90:0;;;;;;;;;;;-1:-1:-1;;;;;35258:90:0;-1:-1:-1;;;;;35258:90: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;35258:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35258:90:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;35366:4:0;;35073:305;-1:-1:-1;;;;;;;35073:305:0:o;29151:127::-;23712:12;:10;:12::i;:::-;23702:6;;-1:-1:-1;;;;;23702:6:0;;;:22;;;23694:67;;;;;-1:-1:-1;;;23694:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23694:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29210:14:0;;;;;;29227:4;29210:14;;;;;;;;:21;;-1:-1:-1;;29210:21:0;;;;;;;29257:13;;;29210:14;29257:13;29151:127;:::o;34086:136::-;-1:-1:-1;;;;;34187:18:0;;;34160:7;34187:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;34086:136::o;30935:117::-;30981:71;;;;;;;;;;;;;;;;;;30935:117;:::o;30458:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24385:103::-;23712:12;:10;:12::i;:::-;23702:6;;-1:-1:-1;;;;;23702:6:0;;;:22;;;23694:67;;;;;-1:-1:-1;;;23694:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;23694:67:0;;;;;;;;;;;;;;;24454:28;24473:8;24454:18;:28::i;22214:92::-;22290:10;22214:92;:::o;42212:338::-;-1:-1:-1;;;;;42306:19:0;;42298:68;;;;-1:-1:-1;;;42298:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42385:21:0;;42377:68;;;;-1:-1:-1;;;42377:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42458:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;42510:32;;;;;;;;;;;;;;;;;42212:338;;;:::o;41635:569::-;-1:-1:-1;;;;;41733:20:0;;41725:70;;;;-1:-1:-1;;;41725:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41814:23:0;;41806:71;;;;-1:-1:-1;;;41806:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41910:68;41932:6;41910:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41910:17:0;;;;;;:9;:17;;;;;;;:68;;:21;:68;:::i;:::-;-1:-1:-1;;;;;41890:17:0;;;;;;;:9;:17;;;;;;;;:88;;;;42012:57;;;;;;;;;;-1:-1:-1;;;42012:57:0;;;;:20;;;;;;;;;;;:57;;42037:6;;42012:57;:24;:57;:::i;:::-;-1:-1:-1;;;;;41989:20:0;;;;;;;:9;:20;;;;;;;;;:80;;;;42085:35;;;;;;;41989:20;;42085:35;;;;;;;;;;;;;-1:-1:-1;;;;;42148:17:0;;;;;;;:9;:17;;;;;;;42167:20;;;;;;;;42133:63;;42148:17;;;;42167:20;42189:6;42133:14;:63::i;:::-;41635:569;;;:::o;18127:178::-;18213:7;18245:12;18237:6;;;;18229:29;;;;-1:-1:-1;;;18229: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;18229:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;18277:5:0;;;18127:178::o;17289:::-;17375:7;17403:5;;;17431:12;17423:6;;;;17415:29;;;;-1:-1:-1;;;17415:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;17415:29:0;-1:-1:-1;17460:1:0;17289:178;-1:-1:-1;;;;17289:178:0:o;42558:412::-;-1:-1:-1;;;;;42634:21:0;;42626:67;;;;-1:-1:-1;;;42626:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42727:65;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42727:18:0;;-1:-1:-1;42727:18:0;;;:9;:18;;;;;;;;:65;;42750:6;;42727:65;:22;:65;:::i;:::-;-1:-1:-1;;;;;42706:18:0;;;;;;:9;:18;;;;;:86;42818:12;;:24;;42835:6;42818:24;:16;:24;:::i;:::-;42803:12;:39;42858:37;;;;;;;;42884:1;;-1:-1:-1;;;;;42858:37:0;;;;;;;;;;;;-1:-1:-1;;;;;42923:18:0;;;;;;;:9;:18;;;;;;42908:54;;42923:18;;42955:6;42908:14;:54::i;:::-;42558:412;;:::o;42978:377::-;-1:-1:-1;;;;;43081:20:0;;;43055:23;43081:20;;;:9;:20;;;;;;;;;;43139:9;:20;;;;;;43170;;;;:32;;;-1:-1:-1;;;;;;43170:32:0;;;;;;;43220:54;;43081:20;;;;;43139;;43170:32;;43081:20;;;43220:54;;43055:23;43220:54;43287:60;43302:15;43319:9;43330:16;43287:14;:60::i;:::-;42978:377;;;;:::o;45076:163::-;45126:6;-1:-1:-1;;;45149:1:0;:10;45145:60;;-1:-1:-1;;;45176:17:0;;45145:60;-1:-1:-1;45229:1:0;45076:163::o;45247:156::-;45360:9;45247:156;:::o;24586:215::-;-1:-1:-1;;;;;24656:22:0;;24648:73;;;;-1:-1:-1;;;24648:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24754:6;;;24733:38;;-1:-1:-1;;;;;24733:38:0;;;;24754:6;;;24733:38;;;24778:6;:17;;-1:-1:-1;;;;;;24778:17:0;-1:-1:-1;;;;;24778:17:0;;;;;;;;;;24586:215::o;43363:910::-;43469:6;-1:-1:-1;;;;;43459:16:0;:6;-1:-1:-1;;;;;43459:16:0;;;:30;;;;;43488:1;43479:6;:10;43459:30;43455:811;;;-1:-1:-1;;;;;43510:20:0;;;43506:367;;-1:-1:-1;;;;;43570:22:0;;43551:16;43570:22;;;:14;:22;;;;;;;;;43631:13;:60;;43690:1;43631:60;;;-1:-1:-1;;;;;43647:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;43667:13:0;;43647:34;;;;;;;;43679:1;43647:40;;43631:60;43611:80;;43710:17;43730:51;43744:6;43730:51;;;;;;;;;;;;;;;;;:9;:13;;:51;;;;;:::i;:::-;43710:71;;43800:57;43817:6;43825:9;43836;43847;43800:16;:57::i;:::-;43506:367;;;;-1:-1:-1;;;;;43893:20:0;;;43889:366;;-1:-1:-1;;;;;43953:22:0;;43934:16;43953:22;;;:14;:22;;;;;;;;;44014:13;:60;;44073:1;44014:60;;;-1:-1:-1;;;;;44030:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;44050:13:0;;44030:34;;;;;;;;44062:1;44030:40;;44014:60;43994:80;;44093:17;44113:50;44127:6;44113:50;;;;;;;;;;;;;;;;;:9;:13;;:50;;;;;:::i;:::-;44093:70;;44182:57;44199:6;44207:9;44218;44229;44182:16;:57::i;17722:130::-;17780:7;17803:43;17807:1;17810;17803:43;;;;;;;;;;;;;;;;;:3;:43::i;44281:611::-;44401:18;44422:56;44429:12;44422:56;;;;;;;;;;;;;;;;;:6;:56::i;:::-;44401:77;;44508:1;44493:12;:16;;;:85;;;;-1:-1:-1;;;;;;44513:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;44536:16:0;;44513:40;;;;;;;;;:50;:65;;;:50;;:65;44493:85;44489:329;;;-1:-1:-1;;;;;44593:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;44616:16:0;;44593:40;;;;;;;;44631:1;44593:46;:57;;;44489:329;;;44718:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44679:22:0;;-1:-1:-1;44679:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;44679:72:0;;;;;;;;;;;;;44764:25;;;:14;:25;;;;;;:44;;44792:16;;;44764:44;;;;;;;;;;44489:329;44833:51;;;;;;;;;;;;;;-1:-1:-1;;;;;44833:51:0;;;;;;;;;;;44281:611;;;;;:::o;44904:164::-;44982:6;45020:12;45013:5;45009:9;;45001:32;;;;-1:-1:-1;;;45001:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;45001:32:0;-1:-1:-1;45058:1:0;;44904:164;-1:-1:-1;;44904:164:0:o;29425:15981::-;;;;;;;;;;-1:-1:-1;29425:15981:0;;;;;;;;:::o
Swarm Source
bzzr://c0c052ae16abb6a222f2b8eadaa10485e3075b6cb1ce3bd8d201ebdaa64b4644
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.