Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Name:
MinimaRouterV1
Compiler Version
v0.6.8+commit.0bbfe453
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../GSN/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../../GSN/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT 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) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
pragma solidity 0.6.8; pragma experimental ABIEncoderV2; interface IFarm { struct FarmInfo { address poolTarget; address lpToken; address stakingContract; address[] underlyingTokens; } function deposit(uint256 minExpected, address to, bytes calldata data) external returns (uint256 liquidity); function withdraw(address to, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.8; interface ISwappaPairV1 { function swap( address input, address output, address to, bytes calldata data ) external; // Get the output amount in output token for a given amountIn of the input token, with the encoded extra data. // Output amount is undefined if input token is invalid for the swap pair. function getOutputAmount( address input, address output, uint amountIn, bytes calldata data ) external view returns (uint amountOut); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.8; pragma experimental ABIEncoderV2; interface ISwappaRouterV1 { struct SwapPayload { address[] path; address[] pairs; bytes[] extras; uint256 inputAmount; uint256 minOutputAmount; uint256 expectedOutputAmount; address to; uint deadline; uint256 partner; bytes sig; } function getOutputAmount( address[] calldata path, address[] calldata pairs, bytes[] calldata extras, uint256 inputAmount ) external view returns (uint256 outputAmount); function swapExactInputForOutput( SwapPayload calldata details ) external returns (uint256 outputAmount); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.8; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "./ISwappaPairV1.sol"; import "./ISwappaRouterV1.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "../interfaces/IFarm.sol"; contract MinimaRouterV1 is ISwappaRouterV1, Ownable { using SafeMath for uint256; mapping(address => bool) private adminSigner; mapping(uint256 => uint256) private partnerFees; mapping(uint256 => uint256) private partnerAdminFees; mapping(uint256 => address) private partnerAdmin; uint256 public defaultAdminFee = 10 ** 8; // default admin fee of 1% uint256 public constant FEE_DENOMINATOR = 10 ** 10; event Swap( address indexed sender, address to, address indexed input, address indexed output, uint256 inputAmount, uint256 outputAmount ); event FeeChanged( uint256 indexed partnerId, address indexed initiator, bool indexed isAdminFee, uint256 oldFee, uint256 newFee ); modifier ensure(uint deadline) { require(deadline >= block.timestamp, 'SwappaRouter: Expired!'); _; } modifier partnerAuthorized(uint256 partnerId) { require(adminSigner[msg.sender] || partnerAdmin[partnerId] == msg.sender, "Unauthorized"); _; } modifier onlyAdmin() { require(adminSigner[msg.sender] || msg.sender == owner(), "Unauthorized"); _; } constructor() public Ownable() { partnerAdmin[0] = msg.sender; partnerAdminFees[0] = 0; partnerFees[0] = 0; adminSigner[0x80C7EE61bB6071aAF89616893836F8a9D7e32cbc] = true; } function recoverAdminFee(address token, address reciever) external onlyAdmin { uint256 toClaim = IERC20(token).balanceOf(address(this)); IERC20(token).transfer(reciever, toClaim); } function splitSignature(bytes memory sig) internal pure returns (uint8, bytes32, bytes32) { require(sig.length == 65, "signature is not 65 bytes"); bytes32 r; bytes32 s; uint8 v; assembly { // first 32 bytes, after the length prefix r := mload(add(sig, 32)) // second 32 bytes s := mload(add(sig, 64)) // final byte (first byte of the next 32 bytes) v := byte(0, mload(add(sig, 96))) } return (v, r, s); } function setAdmin(address addr, bool isAdmin) external onlyOwner { adminSigner[addr] = isAdmin; } function setPartnerAdmin(uint256 partnerId, address admin) external partnerAuthorized(partnerId) { partnerAdmin[partnerId] = admin; } function setPartnerFee(uint256 partnerId, uint256 feeNumerator) external partnerAuthorized(partnerId) { uint256 oldFee = partnerFees[partnerId]; partnerFees[partnerId] = feeNumerator; emit FeeChanged(partnerId, msg.sender, false, oldFee, feeNumerator); } function setAdminFee(uint256 partnerId, uint256 feeNumerator) external onlyAdmin { uint256 oldFee = partnerAdminFees[partnerId]; partnerAdminFees[partnerId] = feeNumerator; emit FeeChanged(partnerId, msg.sender, true, oldFee, feeNumerator); } // Builds a prefixed hash to mimic the behavior of eth_sign. function prefixed(bytes32 hash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } function recoverSigner(bytes32 message, bytes memory sig) internal pure returns (address) { uint8 v; bytes32 r; bytes32 s; (v, r, s) = splitSignature(sig); return ecrecover(message, v, r, s); } function getPartnerInfo(uint256 partnerId, uint deadline, address tokenIn, address tokenOut, bytes memory sig) internal view returns (uint256 partner) { bytes32 message = prefixed(keccak256(abi.encodePacked(partnerId, deadline, tokenIn, tokenOut))); uint8 v; bytes32 r; bytes32 s; (v, r, s) = splitSignature(sig); address signer = ecrecover(message, v, r, s); if (adminSigner[signer]) { return partnerId; } return 0; } function getOutputAmount( address[] calldata path, address[] calldata pairs, bytes[] calldata extras, uint256 inputAmount ) external override view returns (uint256 outputAmount) { outputAmount = inputAmount; for (uint i; i < pairs.length; i++) { outputAmount = ISwappaPairV1(pairs[i]).getOutputAmount(path[i], path[i+1], outputAmount, extras[i]); } } function disperseWithFee(address output, uint256 minOutputAmount, uint256 expectedOutput, uint256 outputAmount, address to, uint256 partnerId) internal returns (uint256) { uint256 partnerFee = outputAmount.mul(partnerFees[partnerId]).div(FEE_DENOMINATOR); uint256 adminFee = outputAmount.mul(partnerAdminFees[partnerId]).div(FEE_DENOMINATOR); outputAmount = outputAmount.sub(partnerFee.add(adminFee)); outputAmount = outputAmount < expectedOutput ? outputAmount : expectedOutput; // Capture positive slippage require( outputAmount >= minOutputAmount, "SwappaRouter: Insufficient output amount!"); require( ERC20(output).transfer(to, outputAmount), "SwappaRouter: Final transfer failed!"); require( ERC20(output).transfer(partnerAdmin[partnerId], partnerFee), "Partner fee transfer failed" ); return outputAmount; } function swapExactInputForOutput(SwapPayload calldata details) external override ensure(details.deadline) returns (uint256 outputAmount) { require(details.path.length == details.pairs.length + 1 , "SwappaRouter: Path and Pairs mismatch!"); require(details.pairs.length == details.extras.length, "SwappaRouter: Pairs and Extras mismatch!"); require(details.pairs.length > 0, "SwappaRouter: Must have at least one pair!"); require( ERC20(details.path[0]).transferFrom(msg.sender, details.pairs[0], details.inputAmount), "SwappaRouter: Initial transferFrom failed!"); address output = details.path[details.path.length - 1]; uint256 outputBalanceBefore = ERC20(output).balanceOf(address(this)); for (uint i; i < details.pairs.length; i++) { (address pairInput, address pairOutput) = (details.path[i], details.path[i + 1]); address next = i < details.pairs.length - 1 ? details.pairs[i+1] : address(this); bytes memory data = details.extras[i]; ISwappaPairV1(details.pairs[i]).swap(pairInput, pairOutput, next, data); } uint256 tradeOutput = ERC20(output).balanceOf(address(this)) - outputBalanceBefore; uint256 partnerId = getPartnerInfo(details.partner, details.deadline, details.path[0], output, details.sig); outputAmount = disperseWithFee(output, details.minOutputAmount, details.expectedOutputAmount, tradeOutput, details.to, partnerId); emit Swap(msg.sender, details.to, details.path[0], output, details.inputAmount, outputAmount); } receive() external payable {} }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 10000 }, "evmVersion": "istanbul", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"partnerId","type":"uint256"},{"indexed":true,"internalType":"address","name":"initiator","type":"address"},{"indexed":true,"internalType":"bool","name":"isAdminFee","type":"bool"},{"indexed":false,"internalType":"uint256","name":"oldFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"FeeChanged","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":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"address","name":"input","type":"address"},{"indexed":true,"internalType":"address","name":"output","type":"address"},{"indexed":false,"internalType":"uint256","name":"inputAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"outputAmount","type":"uint256"}],"name":"Swap","type":"event"},{"inputs":[],"name":"FEE_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultAdminFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bytes[]","name":"extras","type":"bytes[]"},{"internalType":"uint256","name":"inputAmount","type":"uint256"}],"name":"getOutputAmount","outputs":[{"internalType":"uint256","name":"outputAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"reciever","type":"address"}],"name":"recoverAdminFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isAdmin","type":"bool"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"partnerId","type":"uint256"},{"internalType":"uint256","name":"feeNumerator","type":"uint256"}],"name":"setAdminFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"partnerId","type":"uint256"},{"internalType":"address","name":"admin","type":"address"}],"name":"setPartnerAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"partnerId","type":"uint256"},{"internalType":"uint256","name":"feeNumerator","type":"uint256"}],"name":"setPartnerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address[]","name":"pairs","type":"address[]"},{"internalType":"bytes[]","name":"extras","type":"bytes[]"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"minOutputAmount","type":"uint256"},{"internalType":"uint256","name":"expectedOutputAmount","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint256","name":"partner","type":"uint256"},{"internalType":"bytes","name":"sig","type":"bytes"}],"internalType":"struct ISwappaRouterV1.SwapPayload","name":"details","type":"tuple"}],"name":"swapExactInputForOutput","outputs":[{"internalType":"uint256","name":"outputAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526305f5e10060055534801561001857600080fd5b50600061002c6001600160e01b0361014016565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3507f17ef568e3e12ab5b9c7254a8d58478811de00f9e6eb34345acd53bf8fd09d3ec80546001600160a01b0319163317905560007f3617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92eff8190557fac33ff75c19e70fe83507db0d683fd3465c996598dc972688b7ace676c89077b8190557380c7ee61bb6071aaf89616893836f8a9d7e32cbc9052600160208190527f6dd48b307a2da3ad1ef265f9a0494529c64974b95c3d1e3343c5a6900d39111d805460ff19169091179055610144565b3390565b611fe7806101536000396000f3fe6080604052600436106100cb5760003560e01c80639acc65a911610074578063e2f46a001161004e578063e2f46a00146101f0578063e54e04f814610210578063f2fde38b14610230576100d2565b80639acc65a91461019b578063d6a73927146101bb578063d73792a9146101db576100d2565b8063715018a6116100a5578063715018a6146101395780638da5cb5b1461014e5780638e00cfcc14610179576100d2565b80633e05cd82146100d75780634b0bddd2146100f9578063587ac9de14610119576100d2565b366100d257005b600080fd5b3480156100e357600080fd5b506100f76100f2366004611614565b610250565b005b34801561010557600080fd5b506100f7610114366004611648565b610419565b34801561012557600080fd5b506100f76101343660046117b7565b6104b1565b34801561014557600080fd5b506100f7610578565b34801561015a57600080fd5b50610163610629565b60405161017091906118b9565b60405180910390f35b34801561018557600080fd5b5061018e610645565b6040516101709190611e87565b3480156101a757600080fd5b5061018e6101b636600461173a565b61064b565b3480156101c757600080fd5b506100f76101d63660046117b7565b610ca4565b3480156101e757600080fd5b5061018e610d5e565b3480156101fc57600080fd5b5061018e61020b36600461167f565b610d67565b34801561021c57600080fd5b506100f761022b366004611794565b610e99565b34801561023c57600080fd5b506100f761024b3660046115f9565b610f4c565b3360009081526001602052604090205460ff16806102a05750610271610629565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b6102c55760405162461bcd60e51b81526004016102bc90611a57565b60405180910390fd5b6040517f70a0823100000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff8416906370a082319061031a9030906004016118b9565b60206040518083038186803b15801561033257600080fd5b505afa158015610346573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061036a919061177c565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff84169063a9059cbb906103c190859085906004016119d2565b602060405180830381600087803b1580156103db57600080fd5b505af11580156103ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610413919061171e565b50505050565b61042161104e565b60005473ffffffffffffffffffffffffffffffffffffffff90811691161461045b5760405162461bcd60e51b81526004016102bc90611c39565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260016020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3360009081526001602052604090205460ff168061050157506104d2610629565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b61051d5760405162461bcd60e51b81526004016102bc90611a57565b600082815260036020526040908190208054908390559051600190339085907f554029c2305458d550a2bf56ed71f93d754ce963e8599909926079c63e4bbcb49061056b9086908890611e90565b60405180910390a4505050565b61058061104e565b60005473ffffffffffffffffffffffffffffffffffffffff9081169116146105ba5760405162461bcd60e51b81526004016102bc90611c39565b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b60055481565b60008160e00135428110156106725760405162461bcd60e51b81526004016102bc90611ccb565b61067f6020840184611e9e565b600101905061068e8480611e9e565b9050146106ad5760405162461bcd60e51b81526004016102bc90611d96565b6106ba6040840184611f07565b90506106c96020850185611e9e565b9050146106e85760405162461bcd60e51b81526004016102bc90611d39565b60006106f76020850185611e9e565b9050116107165760405162461bcd60e51b81526004016102bc90611b22565b6107208380611e9e565b600081811061072b57fe5b905060200201602081019061074091906115f9565b73ffffffffffffffffffffffffffffffffffffffff166323b872dd336107696020870187611e9e565b600081811061077457fe5b905060200201602081019061078991906115f9565b86606001356040518463ffffffff1660e01b81526004016107ac939291906118da565b602060405180830381600087803b1580156107c657600080fd5b505af11580156107da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107fe919061171e565b61081a5760405162461bcd60e51b81526004016102bc90611b7f565b60006108268480611e9e565b60016108328780611e9e565b90500381811061083e57fe5b905060200201602081019061085391906115f9565b905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161089091906118b9565b60206040518083038186803b1580156108a857600080fd5b505afa1580156108bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e0919061177c565b905060005b6108f26020870187611e9e565b9050811015610ab8576000806109088880611e9e565b8481811061091257fe5b905060200201602081019061092791906115f9565b6109318980611e9e565b8560010181811061093e57fe5b905060200201602081019061095391906115f9565b90925090506000600161096960208b018b611e9e565b905003841061097857306109a7565b61098560208a018a611e9e565b8560010181811061099257fe5b90506020020160208101906109a791906115f9565b905060606109b860408b018b611f07565b868181106109c257fe5b90506020028101906109d49190611f3b565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929350610a199250505060208b018b611e9e565b86818110610a2357fe5b9050602002016020810190610a3891906115f9565b73ffffffffffffffffffffffffffffffffffffffff166332ef8314858585856040518563ffffffff1660e01b8152600401610a76949392919061190b565b600060405180830381600087803b158015610a9057600080fd5b505af1158015610aa4573d6000803e3d6000fd5b5050600190960195506108e5945050505050565b506000818373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610af591906118b9565b60206040518083038186803b158015610b0d57600080fd5b505afa158015610b21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b45919061177c565b0390506000610bcb61010088013560e0890135610b628a80611e9e565b6000818110610b6d57fe5b9050602002016020810190610b8291906115f9565b87610b916101208d018d611f3b565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061105292505050565b9050610bf284608089013560a08a013585610bec60e08d0160c08e016115f9565b86611169565b955073ffffffffffffffffffffffffffffffffffffffff8416610c158880611e9e565b6000818110610c2057fe5b9050602002016020810190610c3591906115f9565b73ffffffffffffffffffffffffffffffffffffffff16337f20efd6d5195b7b50273f01cd79a27989255356f9f13293edc53ee142accfdb75610c7d60e08c0160c08d016115f9565b8b606001358b604051610c92939291906119f8565b60405180910390a45050505050919050565b33600090815260016020526040902054829060ff1680610ce7575060008181526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1633145b610d035760405162461bcd60e51b81526004016102bc90611a57565b6000838152600260205260408082208054908590559051909190339086907f554029c2305458d550a2bf56ed71f93d754ce963e8599909926079c63e4bbcb490610d509086908990611e90565b60405180910390a450505050565b6402540be40081565b8060005b85811015610e8d57868682818110610d7f57fe5b9050602002016020810190610d9491906115f9565b73ffffffffffffffffffffffffffffffffffffffff16637eace8928a8a84818110610dbb57fe5b9050602002016020810190610dd091906115f9565b8b8b85600101818110610ddf57fe5b9050602002016020810190610df491906115f9565b85898987818110610e0157fe5b9050602002810190610e139190611f3b565b6040518663ffffffff1660e01b8152600401610e33959493929190611956565b60206040518083038186803b158015610e4b57600080fd5b505afa158015610e5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e83919061177c565b9150600101610d6b565b50979650505050505050565b33600090815260016020526040902054829060ff1680610edc575060008181526004602052604090205473ffffffffffffffffffffffffffffffffffffffff1633145b610ef85760405162461bcd60e51b81526004016102bc90611a57565b5060009182526004602052604090912080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff909216919091179055565b610f5461104e565b60005473ffffffffffffffffffffffffffffffffffffffff908116911614610f8e5760405162461bcd60e51b81526004016102bc90611c39565b73ffffffffffffffffffffffffffffffffffffffff8116610fc15760405162461bcd60e51b81526004016102bc90611a8e565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b60008061108a8787878760405160200161106f9493929190611872565b604051602081830303815290604052805190602001206113cb565b9050600080600061109a866113fb565b8093508194508295505050506000600185858585604051600081526020016040526040516110cb9493929190611a26565b6020604051602081039080840390855afa1580156110ed573d6000803e3d6000fd5b5050604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015173ffffffffffffffffffffffffffffffffffffffff811660009081526001602052919091205490925060ff16159050611156578a95505050505050611160565b6000955050505050505b95945050505050565b60008181526002602052604081205481906111a2906402540be4009061119690889063ffffffff61143d16565b9063ffffffff61148016565b600084815260036020526040812054919250906111d1906402540be4009061119690899063ffffffff61143d16565b90506111f36111e6838363ffffffff6114c216565b879063ffffffff6114e716565b95508686106112025786611204565b855b9550878610156112265760405162461bcd60e51b81526004016102bc90611df3565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a169063a9059cbb9061127a9088908a906004016119d2565b602060405180830381600087803b15801561129457600080fd5b505af11580156112a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cc919061171e565b6112e85760405162461bcd60e51b81526004016102bc90611c6e565b6000848152600460208190526040918290205491517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff808d169363a9059cbb936113509391909216918791016119d2565b602060405180830381600087803b15801561136a57600080fd5b505af115801561137e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113a2919061171e565b6113be5760405162461bcd60e51b81526004016102bc90611d02565b5093979650505050505050565b6000816040516020016113de9190611841565b604051602081830303815290604052805190602001209050919050565b600080600083516041146114215760405162461bcd60e51b81526004016102bc90611e50565b5050506020810151604082015160609092015160001a92909190565b60008261144c5750600061147a565b8282028284828161145957fe5b04146114775760405162461bcd60e51b81526004016102bc90611bdc565b90505b92915050565b600061147783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611529565b6000828201838110156114775760405162461bcd60e51b81526004016102bc90611aeb565b600061147783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611560565b6000818361154a5760405162461bcd60e51b81526004016102bc9190611a44565b50600083858161155657fe5b0495945050505050565b600081848411156115845760405162461bcd60e51b81526004016102bc9190611a44565b505050900390565b803573ffffffffffffffffffffffffffffffffffffffff8116811461147a57600080fd5b60008083601f8401126115c1578182fd5b50813567ffffffffffffffff8111156115d8578182fd5b60208301915083602080830285010111156115f257600080fd5b9250929050565b60006020828403121561160a578081fd5b611477838361158c565b60008060408385031215611626578081fd5b611630848461158c565b915061163f846020850161158c565b90509250929050565b6000806040838503121561165a578182fd5b611664848461158c565b9150602083013561167481611fa0565b809150509250929050565b60008060008060008060006080888a031215611699578283fd5b873567ffffffffffffffff808211156116b0578485fd5b6116bc8b838c016115b0565b909950975060208a01359150808211156116d4578485fd5b6116e08b838c016115b0565b909750955060408a01359150808211156116f8578485fd5b506117058a828b016115b0565b989b979a50959894979596606090950135949350505050565b60006020828403121561172f578081fd5b815161147781611fa0565b60006020828403121561174b578081fd5b813567ffffffffffffffff811115611761578182fd5b8083016101408186031215611774578283fd5b949350505050565b60006020828403121561178d578081fd5b5051919050565b600080604083850312156117a6578182fd5b8235915061163f846020850161158c565b600080604083850312156117c9578182fd5b50508035926020909101359150565b60008151808452815b818110156117fd576020818501810151868301820152016117e1565b8181111561180e5782602083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b93845260208401929092527fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606091821b8116604085015291901b16605482015260680190565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff9384168152919092166020820152604081019190915260600190565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401528085166040840152506080606083015261194c60808301846117d8565b9695505050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015260806060830152826080830152828460a084013781830160a090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160101949350505050565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b73ffffffffffffffffffffffffffffffffffffffff9390931683526020830191909152604082015260600190565b93845260ff9290921660208401526040830152606082015260800190565b60006020825261147760208301846117d8565b6020808252600c908201527f556e617574686f72697a65640000000000000000000000000000000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252602a908201527f537761707061526f757465723a204d7573742068617665206174206c6561737460408201527f206f6e6520706169722100000000000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f537761707061526f757465723a20496e697469616c207472616e73666572467260408201527f6f6d206661696c65642100000000000000000000000000000000000000000000606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f537761707061526f757465723a2046696e616c207472616e736665722066616960408201527f6c65642100000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526016908201527f537761707061526f757465723a20457870697265642100000000000000000000604082015260600190565b6020808252601b908201527f506172746e657220666565207472616e73666572206661696c65640000000000604082015260600190565b60208082526028908201527f537761707061526f757465723a20506169727320616e6420457874726173206d60408201527f69736d6174636821000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f537761707061526f757465723a205061746820616e64205061697273206d697360408201527f6d61746368210000000000000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f537761707061526f757465723a20496e73756666696369656e74206f7574707560408201527f7420616d6f756e74210000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f7369676e6174757265206973206e6f7420363520627974657300000000000000604082015260600190565b90815260200190565b918252602082015260400190565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112611ed2578283fd5b8084018035925067ffffffffffffffff831115611eed578384fd5b60208101935050506020810236038213156115f257600080fd5b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112611ed2578182fd5b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112611f6f578182fd5b8084018035925067ffffffffffffffff831115611f8a578384fd5b602001925050368190038213156115f257600080fd5b8015158114611fae57600080fd5b5056fea26469706673582212200e8db383ce1e4e0d1fc8db48e1e0fcb6d6d45fd69e5edee55348df34a3480d9164736f6c63430006080033
Deployed ByteCode Sourcemap
349:6304:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;1617:186:9;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;1617:186:9;;;;;;;;:::i;:::-;;2257:100;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;2257:100:9;;;;;;;;:::i;2763:249::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;2763:249:9;;;;;;;;:::i;1689:145:1:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1689:145:1;;;:::i;1066:77::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;1066:77:1;;;:::i;:::-;;;;;;;;;;;;;;;;637:40:9;;5:9:-1;2:2;;;27:1;24;17:12;2:2;637:40:9;;;:::i;:::-;;;;;;;;5140:1479;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;5140:1479:9;;;;;;;;:::i;2499:261::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;2499:261:9;;;;;;;;:::i;707:50::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;707:50:9;;;:::i;3911:373::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;3911:373:9;;;;;;;;:::i;2360:136::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;2360:136:9;;;;;;;;:::i;1983:240:1:-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;-1:-1;1983:240:1;;;;;;;;:::i;1617:186:9:-;1367:10;1355:23;;;;:11;:23;;;;;;;;;:48;;;1396:7;:5;:7::i;:::-;1382:21;;:10;:21;;;1355:48;1347:73;;;;-1:-1:-1;;;1347:73:9;;;;;;;;;;;;;;;;;1716:38:::1;::::0;;;;1698:15:::1;::::0;1716:23:::1;::::0;::::1;::::0;::::1;::::0;:38:::1;::::0;1748:4:::1;::::0;1716:38:::1;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;1716:38:9;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;1716:38:9;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;1716:38:9;;;;;;;;;1758:41;::::0;;;;1698:56;;-1:-1:-1;1758:22:9::1;::::0;::::1;::::0;::::1;::::0;:41:::1;::::0;1781:8;;1698:56;;1758:41:::1;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;1758:41:9;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;1758:41:9;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;1758:41:9;;;;;;;;;;1424:1;1617:186:::0;;:::o;2257:100::-;1280:12:1;:10;:12::i;:::-;1270:6;;:22;:6;;;:22;;;1262:67;;;;-1:-1:-1;;;1262:67:1;;;;;;;;;2326:17:9::1;::::0;;;::::1;;::::0;;;:11:::1;:17;::::0;;;;:27;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;2257:100::o;2763:249::-;1367:10;1355:23;;;;:11;:23;;;;;;;;;:48;;;1396:7;:5;:7::i;:::-;1382:21;;:10;:21;;;1355:48;1347:73;;;;-1:-1:-1;;;1347:73:9;;;;;;;;;2848:14:::1;2865:27:::0;;;:16:::1;:27;::::0;;;;;;;;2896:42;;;;2947:61;;-1:-1:-1;;2969:10:9::1;::::0;2882:9;;2947:61:::1;::::0;::::1;::::0;2865:27;;2926:12;;2947:61:::1;;;;;;;;;;1424:1;2763:249:::0;;:::o;1689:145:1:-;1280:12;:10;:12::i;:::-;1270:6;;:22;:6;;;:22;;;1262:67;;;;-1:-1:-1;;;1262:67:1;;;;;;;;;1795:1:::1;1779:6:::0;;1758:40:::1;::::0;::::1;1779:6:::0;;::::1;::::0;1758:40:::1;::::0;1795:1;;1758:40:::1;1825:1;1808:19:::0;;;::::1;::::0;;1689:145::o;1066:77::-;1104:7;1130:6;;;1066:77;:::o;637:40:9:-;;;;:::o;5140:1479::-;5255:20;5228:7;:16;;;1117:15;1105:8;:27;;1097:62;;;;-1:-1:-1;;;1097:62:9;;;;;;;;;5312:13:::1;;::::0;::::1;:7:::0;:13:::1;;;5335:1;5312:24;::::0;-1:-1:-1;5289:12:9::1;:7:::0;;:12:::1;;;:19;;:47;5281:99;;;;-1:-1:-1::0;;;5281:99:9::1;;;;;;;;;5416:14;;::::0;::::1;:7:::0;:14:::1;;;:21:::0;-1:-1:-1;5392:13:9::1;;::::0;::::1;:7:::0;:13:::1;;;:20;;:45;5384:98;;;;-1:-1:-1::0;;;5384:98:9::1;;;;;;;;;5517:1;5494:13;;::::0;::::1;:7:::0;:13:::1;;;:20;;:24;5486:79;;;;-1:-1:-1::0;;;5486:79:9::1;;;;;;;;;5588:12;:7:::0;;:12:::1;;;5601:1;5588:15;;;;;;;;;;;;;;;;;;;;;;5582:35;;;5618:10;5630:13;;::::0;::::1;:7:::0;:13:::1;;;5644:1;5630:16;;;;;;;;;;;;;;;;;;;;;;5648:7;:19;;;5582:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;5582:86:9;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;5582:86:9;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;5582:86:9;;;;;;;;;5570:148;;;;-1:-1:-1::0;;;5570:148:9::1;;;;;;;;;5722:14;5739:12;:7:::0;;:12:::1;;;5774:1;5752:12;:7:::0;;:12:::1;;;:19;;:23;5739:37;;;;;;;;;;;;;;;;;;;;;;5722:54;;5780:27;5816:6;5810:23;;;5842:4;5810:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;5810:38:9;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;5810:38:9;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;5810:38:9;;;;;;;;;5780:68;;5857:6;5852:337;5869:13;;::::0;::::1;:7:::0;:13:::1;;;:20;;5865:1;:24;5852:337;;;5902:17;::::0;5944:12:::1;:7:::0;;:12:::1;;;5957:1;5944:15;;;;;;;;;;;;;;;;;;;;;;5961:12;:7:::0;;:12:::1;;;5974:1;5978;5974:5;5961:19;;;;;;;;;;;;;;;;;;;;;;5901:80:::0;;-1:-1:-1;5901:80:9;-1:-1:-1;5986:12:9::1;6028:1;6005:13;;::::0;::::1;:7:::0;:13:::1;;;:20;;:24;6001:1;:28;:65;;6061:4;6001:65;;;6032:13;;::::0;::::1;:7:::0;:13:::1;;;6046:1;6048;6046:3;6032:18;;;;;;;;;;;;;;;;;;;;;;5986:80:::0;-1:-1:-1;6071:17:9::1;6091:14;;::::0;::::1;:7:::0;:14:::1;;;6106:1;6091:17;;;;;;;;;;;;;;;;;;;;6071:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16:::0;::::1;74:27:::0;;;;-1:-1;6071:37:9;;-1:-1:-1;6127:13:9::1;::::0;-1:-1:-1;;;6127:13:9::1;::::0;::::1;::::0;::::1;;;6141:1;6127:16;;;;;;;;;;;;;;;;;;;;;;6113:36;;;6150:9;6161:10;6173:4;6179;6113:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;6113:71:9;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;5891:3:9::1;::::0;;::::1;::::0;-1:-1:-1;5852:337:9::1;::::0;-1:-1:-1;;;;;5852:337:9::1;;;6192:19;6255;6220:6;6214:23;;;6246:4;6214:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;6214:38:9;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;6214:38:9;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;6214:38:9;;;;;;;;;:60;::::0;-1:-1:-1;6278:17:9::1;6298:87;6313:15;::::0;::::1;;6330:16;::::0;::::1;;6348:12;6313:7:::0;;6348:12:::1;;;6361:1;6348:15;;;;;;;;;;;;;;;;;;;;;;6365:6:::0;6373:11:::1;;::::0;::::1;:7:::0;:11:::1;;;6298:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16:::0;::::1;74:27:::0;;;;-1:-1;6298:14:9::1;::::0;-1:-1:-1;;;6298:87:9:i:1;:::-;6278:107:::0;-1:-1:-1;6404:114:9::1;6420:6:::0;6428:23:::1;::::0;::::1;;6453:28;::::0;::::1;;6483:11:::0;6496:10:::1;::::0;;;::::1;::::0;::::1;;;;6508:9;6404:15;:114::i;:::-;6389:129:::0;-1:-1:-1;6527:88:9::1;::::0;::::1;6556:12;:7:::0;;:12:::1;;;6569:1;6556:15;;;;;;;;;;;;;;;;;;;;;;6527:88;;6532:10;6527:88;6544:10;::::0;;;::::1;::::0;::::1;;;;6581:7;:19;;;6602:12;6527:88;;;;;;;;;;;;;;;;;1163:1;;;;5140:1479:::0;;;;:::o;2499:261::-;1241:10;1229:23;;;;:11;:23;;;;;;2590:9;;1229:23;;;:64;;-1:-1:-1;1256:23:9;;;;:12;:23;;;;;;:37;:23;1283:10;1256:37;1229:64;1221:89;;;;-1:-1:-1;;;1221:89:9;;;;;;;;;2605:14:::1;2622:22:::0;;;:11:::1;:22;::::0;;;;;;;2648:37;;;;2694:62;;2622:22;;2605:14;2716:10:::1;::::0;2634:9;;2694:62:::1;::::0;::::1;::::0;2622:22;;2673:12;;2694:62:::1;;;;;;;;;;1314:1;2499:261:::0;;;:::o;707:50::-;749:8;707:50;:::o;3911:373::-;4117:11;4076:20;4132:149;4145:16;;;4132:149;;;4206:5;;4212:1;4206:8;;;;;;;;;;;;;;;;;;;;;;4192:39;;;4232:4;;4237:1;4232:7;;;;;;;;;;;;;;;;;;;;;;4241:4;;4246:1;4248;4246:3;4241:9;;;;;;;;;;;;;;;;;;;;;;4252:12;4266:6;;4273:1;4266:9;;;;;;;;;;;;;;;;;;;;4192:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;4192:84:9;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4192:84:9;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;4192:84:9;;;;;;;;;4173:103;-1:-1:-1;4163:3:9;;4132:149;;;;3911:373;;;;;;;;;:::o;2360:136::-;1241:10;1229:23;;;;:11;:23;;;;;;2446:9;;1229:23;;;:64;;-1:-1:-1;1256:23:9;;;;:12;:23;;;;;;:37;:23;1283:10;1256:37;1229:64;1221:89;;;;-1:-1:-1;;;1221:89:9;;;;;;;;;-1:-1:-1;2461:23:9::1;::::0;;;:12:::1;:23;::::0;;;;;:31;;;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;2360:136::o;1983:240:1:-;1280:12;:10;:12::i;:::-;1270:6;;:22;:6;;;:22;;;1262:67;;;;-1:-1:-1;;;1262:67:1;;;;;;;;;2071:22:::1;::::0;::::1;2063:73;;;;-1:-1:-1::0;;;2063:73:1::1;;;;;;;;;2172:6;::::0;;2151:38:::1;::::0;::::1;::::0;;::::1;::::0;2172:6;::::1;::::0;2151:38:::1;::::0;::::1;2199:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;1983:240::o;590:104:0:-;677:10;590:104;:::o;3465:442:9:-;3599:15;3620;3638:77;3674:9;3685:8;3695:7;3704:8;3657:56;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;3657:56:9;;;3647:67;;;;;;3638:8;:77::i;:::-;3620:95;;3719:7;3730:9;3743;3769:19;3784:3;3769:14;:19::i;:::-;3757:31;;;;;;;;;;;;3792:14;3809:27;3819:7;3828:1;3831;3834;3809:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;3809:27:9;;;;;;3845:19;;;;;;;:11;3809:27;3845:19;;;;;;3809:27;;-1:-1:-1;3845:19:9;;3841:51;;-1:-1:-1;3841:51:9;;3878:9;3871:16;;;;;;;;;3841:51;3902:1;3895:8;;;;;;;3465:442;;;;;;;;:::o;4287:850::-;4448:7;4499:22;;;:11;:22;;;;;;4448:7;;4482:61;;749:8;;4482:40;;:12;;:40;:16;:40;:::i;:::-;:44;:61;:44;:61;:::i;:::-;4547:16;4583:27;;;:16;:27;;;;;;4461:82;;-1:-1:-1;4547:16:9;4566:66;;749:8;;4566:45;;:12;;:45;:16;:45;:::i;:66::-;4547:85;-1:-1:-1;4651:42:9;4668:24;:10;4547:85;4668:24;:14;:24;:::i;:::-;4651:12;;:42;:16;:42;:::i;:::-;4636:57;;4727:14;4712:12;:29;:61;;4759:14;4712:61;;;4744:12;4712:61;4697:76;;4835:15;4819:12;:31;;4807:89;;;;-1:-1:-1;;;4807:89:9;;;;;;;;;4913:40;;;;;:22;;;;;;:40;;4936:2;;4940:12;;4913:40;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;4913:40:9;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;4913:40:9;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;4913:40:9;;;;;;;;;4901:96;;;;-1:-1:-1;;;4901:96:9;;;;;;;;;5036:23;;;;:12;:23;;;;;;;;;;5013:59;;;;;:22;;;;;;;:59;;5036:23;;;;;5061:10;;5013:59;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;5013:59:9;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;5013:59:9;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;5013:59:9;;;;;;;;;5001:109;;;;-1:-1:-1;;;5001:109:9;;;;;;;;;-1:-1:-1;5121:12:9;;4287:850;-1:-1:-1;;;;;;;4287:850:9:o;3077:151::-;3132:7;3218:4;3165:58;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;3165:58:9;;;3155:69;;;;;;3148:76;;3077:151;;;:::o;1806:448::-;1877:5;1884:7;1893;1915:3;:10;1929:2;1915:16;1907:54;;;;-1:-1:-1;;;1907:54:9;;;;;;;;;-1:-1:-1;;;2084:2:9;2075:12;;2069:19;2134:2;2125:12;;2119:19;2221:2;2212:12;;;2206:19;1966:9;2198:28;;2069:19;;2119;1806:448::o;2180:459:2:-;2238:7;2479:6;2475:45;;-1:-1:-1;2508:1:2;2501:8;;2475:45;2542:5;;;2546:1;2542;:5;:1;2565:5;;;;;:10;2557:56;;;;-1:-1:-1;;;2557:56:2;;;;;;;;;2631:1;-1:-1:-1;2180:459:2;;;;;:::o;3101:130::-;3159:7;3185:39;3189:1;3192;3185:39;;;;;;;;;;;;;;;;;:3;:39::i;874:176::-;932:7;963:5;;;986:6;;;;978:46;;;;-1:-1:-1;;;978:46:2;;;;;;;;1321:134;1379:7;1405:43;1409:1;1412;1405:43;;;;;;;;;;;;;;;;;:3;:43::i;3713:272::-;3799:7;3833:12;3826:5;3818:28;;;;-1:-1:-1;;;3818:28:2;;;;;;;;;;;3856:9;3872:1;3868;:5;;;;;;;3713:272;-1:-1:-1;;;;;3713:272:2:o;1746:187::-;1832:7;1867:12;1859:6;;;;1851:29;;;;-1:-1:-1;;;1851:29:2;;;;;;;;;;-1:-1:-1;;;1902:5:2;;;1746:187::o;5:130:-1:-;72:20;;27351:42;27340:54;;29009:35;;28999:2;;29058:1;;29048:12;160:352;;;290:3;283:4;275:6;271:17;267:27;257:2;;-1:-1;;298:12;257:2;-1:-1;328:20;;368:18;357:30;;354:2;;;-1:-1;;390:12;354:2;434:4;426:6;422:17;410:29;;485:3;434:4;;469:6;465:17;426:6;451:32;;448:41;445:2;;;502:1;;492:12;445:2;250:262;;;;;;1664:241;;1768:2;1756:9;1747:7;1743:23;1739:32;1736:2;;;-1:-1;;1774:12;1736:2;1836:53;1881:7;1857:22;1836:53;;1912:366;;;2033:2;2021:9;2012:7;2008:23;2004:32;2001:2;;;-1:-1;;2039:12;2001:2;2101:53;2146:7;2122:22;2101:53;;;2091:63;;2209:53;2254:7;2191:2;2234:9;2230:22;2209:53;;;2199:63;;1995:283;;;;;;2285:360;;;2403:2;2391:9;2382:7;2378:23;2374:32;2371:2;;;-1:-1;;2409:12;2371:2;2471:53;2516:7;2492:22;2471:53;;;2461:63;;2561:2;2601:9;2597:22;971:20;996:30;1020:5;996:30;;;2569:60;;;;2365:280;;;;;;2652:1107;;;;;;;;2923:3;2911:9;2902:7;2898:23;2894:33;2891:2;;;-1:-1;;2930:12;2891:2;2988:17;2975:31;3026:18;;3018:6;3015:30;3012:2;;;-1:-1;;3048:12;3012:2;3086:80;3158:7;3149:6;3138:9;3134:22;3086:80;;;3076:90;;-1:-1;3076:90;-1:-1;3231:2;3216:18;;3203:32;;-1:-1;3244:30;;;3241:2;;;-1:-1;;3277:12;3241:2;3315:80;3387:7;3378:6;3367:9;3363:22;3315:80;;;3305:90;;-1:-1;3305:90;-1:-1;3460:2;3445:18;;3432:32;;-1:-1;3473:30;;;3470:2;;;-1:-1;;3506:12;3470:2;;3544:91;3627:7;3618:6;3607:9;3603:22;3544:91;;;2885:874;;;;-1:-1;2885:874;;;;;;3672:2;3711:22;;;1453:20;;2885:874;-1:-1;;;;2885:874;3766:257;;3878:2;3866:9;3857:7;3853:23;3849:32;3846:2;;;-1:-1;;3884:12;3846:2;1119:6;1113:13;1131:30;1155:5;1131:30;;4030:389;;4165:2;4153:9;4144:7;4140:23;4136:32;4133:2;;;-1:-1;;4171:12;4133:2;4229:17;4216:31;4267:18;4259:6;4256:30;4253:2;;;-1:-1;;4289:12;4253:2;4386:6;4375:9;4371:22;1331:3;1322:6;1317:3;1313:16;1309:26;1306:2;;;-1:-1;;1338:12;1306:2;4309:94;4127:292;-1:-1;;;;4127:292;4426:263;;4541:2;4529:9;4520:7;4516:23;4512:32;4509:2;;;-1:-1;;4547:12;4509:2;-1:-1;1601:13;;4503:186;-1:-1;4503:186;4696:366;;;4817:2;4805:9;4796:7;4792:23;4788:32;4785:2;;;-1:-1;;4823:12;4785:2;1466:6;1453:20;4875:63;;4993:53;5038:7;4975:2;5018:9;5014:22;4993:53;;5069:366;;;5190:2;5178:9;5169:7;5165:23;5161:32;5158:2;;;-1:-1;;5196:12;5158:2;-1:-1;;1453:20;;;5348:2;5387:22;;;1453:20;;-1:-1;5152:283;6477:343;;6619:5;26342:12;26627:6;26622:3;26615:19;-1:-1;28179:101;28193:6;28190:1;28187:13;28179:101;;;26664:4;28260:11;;;;;28254:18;28241:11;;;;;28234:39;28208:10;28179:101;;;28295:6;28292:1;28289:13;28286:2;;;-1:-1;26664:4;28351:6;26659:3;28342:16;;28335:27;28286:2;-1:-1;28831:2;28811:14;28827:7;28807:28;6776:39;;;;26664:4;6776:39;;6567:253;-1:-1;;6567:253;13060:520;7478:66;7458:87;;7442:2;7564:12;;5941:37;;;;13543:12;;;13277:303;13587:670;5941:37;;;13896:2;13887:12;;5941:37;;;;28918:14;28922:2;28918:14;;;;;13998:12;;;5800:58;28918:14;;;;14109:12;;;5800:58;14220:12;;;13787:470;14264:222;27351:42;27340:54;;;;5662:37;;14391:2;14376:18;;14362:124;14738:460;27351:42;27340:54;;;5521:58;;27340:54;;;;15101:2;15086:18;;5662:37;15184:2;15169:18;;5941:37;;;;14929:2;14914:18;;14900:298;15205:640;;27351:42;;5692:5;27340:54;5669:3;5662:37;27351:42;5692:5;27340:54;15599:2;15588:9;15584:18;5662:37;27351:42;5692:5;27340:54;15682:2;15671:9;15667:18;5662:37;;15434:3;15719:2;15708:9;15704:18;15697:48;15759:76;15434:3;15423:9;15419:19;15821:6;15759:76;;;15751:84;15405:440;-1:-1;;;;;;15405:440;15852:660;;27351:42;;27344:5;27340:54;5669:3;5662:37;27351:42;27344:5;27340:54;16256:2;16245:9;16241:18;5662:37;;5971:5;16339:2;16328:9;16324:18;5941:37;16091:3;16376:2;16365:9;16361:18;16354:48;26627:6;16091:3;16080:9;16076:19;26615;28034:6;28029:3;26655:14;16080:9;26655:14;28011:30;28072:16;;;26655:14;28072:16;;;28065:27;;;;28831:2;28811:14;;;28827:7;28807:28;6424:39;;;16062:450;-1:-1;;;;16062:450;16519:333;27351:42;27340:54;;;;5662:37;;16838:2;16823:18;;5941:37;16674:2;16659:18;;16645:207;16859:444;27351:42;27340:54;;;;5662:37;;17206:2;17191:18;;5941:37;;;;17289:2;17274:18;;5941:37;17042:2;17027:18;;17013:290;17310:548;5941:37;;;27556:4;27545:16;;;;17678:2;17663:18;;13013:35;17761:2;17746:18;;5941:37;17844:2;17829:18;;5941:37;17517:3;17502:19;;17488:370;17865:310;;18012:2;18033:17;18026:47;18087:78;18012:2;18001:9;17997:18;18151:6;18087:78;;18182:416;18382:2;18396:47;;;7815:2;18367:18;;;26615:19;7851:14;26655;;;7831:35;7885:12;;;18353:245;18605:416;18805:2;18819:47;;;8136:2;18790:18;;;26615:19;8172:34;26655:14;;;8152:55;8241:8;8227:12;;;8220:30;8269:12;;;18776:245;19028:416;19228:2;19242:47;;;8520:2;19213:18;;;26615:19;8556:29;26655:14;;;8536:50;8605:12;;;19199:245;19451:416;19651:2;19665:47;;;8856:2;19636:18;;;26615:19;8892:34;26655:14;;;8872:55;8961:12;8947;;;8940:34;8993:12;;;19622:245;19874:416;20074:2;20088:47;;;9244:2;20059:18;;;26615:19;9280:34;26655:14;;;9260:55;9349:12;9335;;;9328:34;9381:12;;;20045:245;20297:416;20497:2;20511:47;;;9632:2;20482:18;;;26615:19;9668:34;26655:14;;;9648:55;9737:3;9723:12;;;9716:25;9760:12;;;20468:245;20720:416;20920:2;20934:47;;;20905:18;;;26615:19;10047:34;26655:14;;;10027:55;10101:12;;;20891:245;21143:416;21343:2;21357:47;;;10352:2;21328:18;;;26615:19;10388:34;26655:14;;;10368:55;10457:6;10443:12;;;10436:28;10483:12;;;21314:245;21566:416;21766:2;21780:47;;;10734:2;21751:18;;;26615:19;10770:24;26655:14;;;10750:45;10814:12;;;21737:245;21989:416;22189:2;22203:47;;;11065:2;22174:18;;;26615:19;11101:29;26655:14;;;11081:50;11150:12;;;22160:245;22412:416;22612:2;22626:47;;;11401:2;22597:18;;;26615:19;11437:34;26655:14;;;11417:55;11506:10;11492:12;;;11485:32;11536:12;;;22583:245;22835:416;23035:2;23049:47;;;11787:2;23020:18;;;26615:19;11823:34;26655:14;;;11803:55;11892:8;11878:12;;;11871:30;11920:12;;;23006:245;23258:416;23458:2;23472:47;;;12171:2;23443:18;;;26615:19;12207:34;26655:14;;;12187:55;12276:11;12262:12;;;12255:33;12307:12;;;23429:245;23681:416;23881:2;23895:47;;;12558:2;23866:18;;;26615:19;12594:27;26655:14;;;12574:48;12641:12;;;23852:245;24104:222;5941:37;;;24231:2;24216:18;;24202:124;24333:333;5941:37;;;24652:2;24637:18;;5941:37;24488:2;24473:18;;24459:207;24673:522;;;24824:11;24811:25;24875:48;24899:8;24883:14;24879:29;24875:48;24855:18;24851:73;24841:2;;-1:-1;;24928:12;24841:2;24969:18;24959:8;24955:33;25022:4;25009:18;24999:28;;25047:18;25039:6;25036:30;25033:2;;;-1:-1;;25069:12;25033:2;24914:4;25101;25097:13;25089:21;;;;24914:4;25153:6;25149:17;24883:14;25129:38;25123:4;25119:49;25116:2;;;25181:1;;25171:12;25202:533;;;25364:11;25351:25;25415:48;25439:8;25423:14;25419:29;25415:48;25395:18;25391:73;25381:2;;-1:-1;;25468:12;25742:506;;;25877:11;25864:25;25928:48;25952:8;25936:14;25932:29;25928:48;25908:18;25904:73;25894:2;;-1:-1;;25981:12;25894:2;26022:18;26012:8;26008:33;26075:4;26062:18;26052:28;;26100:18;26092:6;26089:30;26086:2;;;-1:-1;;26122:12;26086:2;25967:4;26150:13;;-1:-1;;25936:14;26182:38;;;26172:49;;26169:2;;;26234:1;;26224:12;29074:111;29155:5;27173:13;27166:21;29133:5;29130:32;29120:2;;29176:1;;29166:12;29120:2;29114:71;
Swarm Source
ipfs://0e8db383ce1e4e0d1fc8db48e1e0fcb6d6d45fd69e5edee55348df34a3480d91
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.