Contract
0xfda866cfece71f4c17b4a5e5f9a00ac08c72eadc
10
[ Download CSV Export ]
OVERVIEW
Pera Finance is a DEX Optimizer designed to boost on-chain trading volume via trader incentives.Contract Name:
PeraFinance
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2022-04-14 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {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 Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + 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) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` 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 += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(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 Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: contracts/PERA.sol pragma solidity ^0.8.0; contract PeraFinance is ERC20, ERC20Burnable { constructor() ERC20("Pera Finance", "PERA") { _mint(msg.sender, 125350784 * 10 ** decimals()); } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f506572612046696e616e636500000000000000000000000000000000000000008152506040518060400160405280600481526020017f504552410000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000284565b508060049080519060200190620000af92919062000284565b505050620000f233620000c7620000f860201b60201c565b600a620000d591906200048f565b630778b380620000e69190620005cc565b6200010160201b60201c565b620006e5565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000174576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016b9062000387565b60405180910390fd5b62000188600083836200027a60201b60201c565b80600260008282546200019c9190620003d7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001f39190620003d7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200025a9190620003a9565b60405180910390a362000276600083836200027f60201b60201c565b5050565b505050565b505050565b828054620002929062000644565b90600052602060002090601f016020900481019282620002b6576000855562000302565b82601f10620002d157805160ff191683800117855562000302565b8280016001018555821562000302579182015b8281111562000301578251825591602001919060010190620002e4565b5b50905062000311919062000315565b5090565b5b808211156200033057600081600090555060010162000316565b5090565b600062000343601f83620003c6565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000381816200062d565b82525050565b60006020820190508181036000830152620003a28162000334565b9050919050565b6000602082019050620003c0600083018462000376565b92915050565b600082825260208201905092915050565b6000620003e4826200062d565b9150620003f1836200062d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200042957620004286200067a565b5b828201905092915050565b6000808291508390505b600185111562000486578086048111156200045e576200045d6200067a565b5b60018516156200046e5780820291505b80810290506200047e85620006d8565b94506200043e565b94509492505050565b60006200049c826200062d565b9150620004a98362000637565b9250620004d87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004e0565b905092915050565b600082620004f25760019050620005c5565b81620005025760009050620005c5565b81600181146200051b576002811462000526576200055c565b6001915050620005c5565b60ff8411156200053b576200053a6200067a565b5b8360020a9150848211156200055557620005546200067a565b5b50620005c5565b5060208310610133831016604e8410600b8410161715620005965782820a90508381111562000590576200058f6200067a565b5b620005c5565b620005a5848484600162000434565b92509050818404811115620005bf57620005be6200067a565b5b81810290505b9392505050565b6000620005d9826200062d565b9150620005e6836200062d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200062257620006216200067a565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200065d57607f821691505b60208210811415620006745762000673620006a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b6116b780620006f56000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610226578063a457c2d714610244578063a9059cbb14610274578063dd62ed3e146102a4576100cf565b806342966c68146101be57806370a08231146101da57806379cc67901461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d4565b6040516100e9919061130c565b60405180910390f35b61010c60048036038101906101079190610eb6565b610366565b60405161011991906112f1565b60405180910390f35b61012a610389565b604051610137919061144e565b60405180910390f35b61015a60048036038101906101559190610e67565b610393565b60405161016791906112f1565b60405180910390f35b6101786103c2565b6040516101859190611469565b60405180910390f35b6101a860048036038101906101a39190610eb6565b6103cb565b6040516101b591906112f1565b60405180910390f35b6101d860048036038101906101d39190610ef2565b610475565b005b6101f460048036038101906101ef9190610e02565b610489565b604051610201919061144e565b60405180910390f35b610224600480360381019061021f9190610eb6565b6104d1565b005b61022e6104f1565b60405161023b919061130c565b60405180910390f35b61025e60048036038101906102599190610eb6565b610583565b60405161026b91906112f1565b60405180910390f35b61028e60048036038101906102899190610eb6565b61066d565b60405161029b91906112f1565b60405180910390f35b6102be60048036038101906102b99190610e2b565b610690565b6040516102cb919061144e565b60405180910390f35b6060600380546102e3906115b2565b80601f016020809104026020016040519081016040528092919081815260200182805461030f906115b2565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b5050505050905090565b600080610371610717565b905061037e81858561071f565b600191505092915050565b6000600254905090565b60008061039e610717565b90506103ab8582856108ea565b6103b6858585610976565b60019150509392505050565b60006012905090565b6000806103d6610717565b905061046a818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461046591906114a0565b61071f565b600191505092915050565b610486610480610717565b82610bf7565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104e3826104dd610717565b836108ea565b6104ed8282610bf7565b5050565b606060048054610500906115b2565b80601f016020809104026020016040519081016040528092919081815260200182805461052c906115b2565b80156105795780601f1061054e57610100808354040283529160200191610579565b820191906000526020600020905b81548152906001019060200180831161055c57829003601f168201915b5050505050905090565b60008061058e610717565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064b9061142e565b60405180910390fd5b610661828686840361071f565b60019250505092915050565b600080610678610717565b9050610685818585610976565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561078f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107869061140e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f69061136e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108dd919061144e565b60405180910390a3505050565b60006108f68484610690565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109705781811015610962576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109599061138e565b60405180910390fd5b61096f848484840361071f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd906113ee565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4d9061132e565b60405180910390fd5b610a61838383610dce565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade906113ae565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b7a91906114a0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bde919061144e565b60405180910390a3610bf1848484610dd3565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e906113ce565b60405180910390fd5b610c7382600083610dce565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf09061134e565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d5091906114f6565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db5919061144e565b60405180910390a3610dc983600084610dd3565b505050565b505050565b505050565b600081359050610de781611653565b92915050565b600081359050610dfc8161166a565b92915050565b600060208284031215610e1457600080fd5b6000610e2284828501610dd8565b91505092915050565b60008060408385031215610e3e57600080fd5b6000610e4c85828601610dd8565b9250506020610e5d85828601610dd8565b9150509250929050565b600080600060608486031215610e7c57600080fd5b6000610e8a86828701610dd8565b9350506020610e9b86828701610dd8565b9250506040610eac86828701610ded565b9150509250925092565b60008060408385031215610ec957600080fd5b6000610ed785828601610dd8565b9250506020610ee885828601610ded565b9150509250929050565b600060208284031215610f0457600080fd5b6000610f1284828501610ded565b91505092915050565b610f248161153c565b82525050565b6000610f3582611484565b610f3f818561148f565b9350610f4f81856020860161157f565b610f5881611642565b840191505092915050565b6000610f7060238361148f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610fd660228361148f565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061103c60228361148f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110a2601d8361148f565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b60006110e260268361148f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061114860218361148f565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111ae60258361148f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061121460248361148f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061127a60258361148f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6112dc81611568565b82525050565b6112eb81611572565b82525050565b60006020820190506113066000830184610f1b565b92915050565b600060208201905081810360008301526113268184610f2a565b905092915050565b6000602082019050818103600083015261134781610f63565b9050919050565b6000602082019050818103600083015261136781610fc9565b9050919050565b600060208201905081810360008301526113878161102f565b9050919050565b600060208201905081810360008301526113a781611095565b9050919050565b600060208201905081810360008301526113c7816110d5565b9050919050565b600060208201905081810360008301526113e78161113b565b9050919050565b60006020820190508181036000830152611407816111a1565b9050919050565b6000602082019050818103600083015261142781611207565b9050919050565b600060208201905081810360008301526114478161126d565b9050919050565b600060208201905061146360008301846112d3565b92915050565b600060208201905061147e60008301846112e2565b92915050565b600081519050919050565b600082825260208201905092915050565b60006114ab82611568565b91506114b683611568565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156114eb576114ea6115e4565b5b828201905092915050565b600061150182611568565b915061150c83611568565b92508282101561151f5761151e6115e4565b5b828203905092915050565b600061153582611548565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561159d578082015181840152602081019050611582565b838111156115ac576000848401525b50505050565b600060028204905060018216806115ca57607f821691505b602082108114156115de576115dd611613565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61165c8161152a565b811461166757600080fd5b50565b61167381611568565b811461167e57600080fd5b5056fea2646970667358221220c97e7ae0f491370e248c7e3e92b68a415ecc676bc4b6b1a0ea17a2141a11d03a64736f6c63430008000033
Deployed ByteCode Sourcemap
18709:165:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6686:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9037:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7806:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9818:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7648:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10522:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18064:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7977:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18474:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6905:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11265:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8310:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8566:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6686:100;6740:13;6773:5;6766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6686:100;:::o;9037:201::-;9120:4;9137:13;9153:12;:10;:12::i;:::-;9137:28;;9176:32;9185:5;9192:7;9201:6;9176:8;:32::i;:::-;9226:4;9219:11;;;9037:201;;;;:::o;7806:108::-;7867:7;7894:12;;7887:19;;7806:108;:::o;9818:295::-;9949:4;9966:15;9984:12;:10;:12::i;:::-;9966:30;;10007:38;10023:4;10029:7;10038:6;10007:15;:38::i;:::-;10056:27;10066:4;10072:2;10076:6;10056:9;:27::i;:::-;10101:4;10094:11;;;9818:295;;;;;:::o;7648:93::-;7706:5;7731:2;7724:9;;7648:93;:::o;10522:240::-;10610:4;10627:13;10643:12;:10;:12::i;:::-;10627:28;;10666:66;10675:5;10682:7;10721:10;10691:11;:18;10703:5;10691:18;;;;;;;;;;;;;;;:27;10710:7;10691:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;10666:8;:66::i;:::-;10750:4;10743:11;;;10522:240;;;;:::o;18064:91::-;18120:27;18126:12;:10;:12::i;:::-;18140:6;18120:5;:27::i;:::-;18064:91;:::o;7977:127::-;8051:7;8078:9;:18;8088:7;8078:18;;;;;;;;;;;;;;;;8071:25;;7977:127;;;:::o;18474:164::-;18551:46;18567:7;18576:12;:10;:12::i;:::-;18590:6;18551:15;:46::i;:::-;18608:22;18614:7;18623:6;18608:5;:22::i;:::-;18474:164;;:::o;6905:104::-;6961:13;6994:7;6987:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6905:104;:::o;11265:438::-;11358:4;11375:13;11391:12;:10;:12::i;:::-;11375:28;;11414:24;11441:11;:18;11453:5;11441:18;;;;;;;;;;;;;;;:27;11460:7;11441:27;;;;;;;;;;;;;;;;11414:54;;11507:15;11487:16;:35;;11479:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11600:60;11609:5;11616:7;11644:15;11625:16;:34;11600:8;:60::i;:::-;11691:4;11684:11;;;;11265:438;;;;:::o;8310:193::-;8389:4;8406:13;8422:12;:10;:12::i;:::-;8406:28;;8445;8455:5;8462:2;8466:6;8445:9;:28::i;:::-;8491:4;8484:11;;;8310:193;;;;:::o;8566:151::-;8655:7;8682:11;:18;8694:5;8682:18;;;;;;;;;;;;;;;:27;8701:7;8682:27;;;;;;;;;;;;;;;;8675:34;;8566:151;;;;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;14901:380::-;15054:1;15037:19;;:5;:19;;;;15029:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15135:1;15116:21;;:7;:21;;;;15108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15219:6;15189:11;:18;15201:5;15189:18;;;;;;;;;;;;;;;:27;15208:7;15189:27;;;;;;;;;;;;;;;:36;;;;15257:7;15241:32;;15250:5;15241:32;;;15266:6;15241:32;;;;;;:::i;:::-;;;;;;;;14901:380;;;:::o;15568:453::-;15703:24;15730:25;15740:5;15747:7;15730:9;:25::i;:::-;15703:52;;15790:17;15770:16;:37;15766:248;;15852:6;15832:16;:26;;15824:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15936:51;15945:5;15952:7;15980:6;15961:16;:25;15936:8;:51::i;:::-;15766:248;15568:453;;;;:::o;12182:671::-;12329:1;12313:18;;:4;:18;;;;12305:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12406:1;12392:16;;:2;:16;;;;12384:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12461:38;12482:4;12488:2;12492:6;12461:20;:38::i;:::-;12512:19;12534:9;:15;12544:4;12534:15;;;;;;;;;;;;;;;;12512:37;;12583:6;12568:11;:21;;12560:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12700:6;12686:11;:20;12668:9;:15;12678:4;12668:15;;;;;;;;;;;;;;;:38;;;;12745:6;12728:9;:13;12738:2;12728:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12784:2;12769:26;;12778:4;12769:26;;;12788:6;12769:26;;;;;;:::i;:::-;;;;;;;;12808:37;12828:4;12834:2;12838:6;12808:19;:37::i;:::-;12182:671;;;;:::o;13872:591::-;13975:1;13956:21;;:7;:21;;;;13948:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14028:49;14049:7;14066:1;14070:6;14028:20;:49::i;:::-;14090:22;14115:9;:18;14125:7;14115:18;;;;;;;;;;;;;;;;14090:43;;14170:6;14152:14;:24;;14144:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14289:6;14272:14;:23;14251:9;:18;14261:7;14251:18;;;;;;;;;;;;;;;:44;;;;14333:6;14317:12;;:22;;;;;;;:::i;:::-;;;;;;;;14383:1;14357:37;;14366:7;14357:37;;;14387:6;14357:37;;;;;;:::i;:::-;;;;;;;;14407:48;14427:7;14444:1;14448:6;14407:19;:48::i;:::-;13872:591;;;:::o;16621:125::-;;;;:::o;17350:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:109::-;2298:21;2313:5;2298:21;:::i;:::-;2293:3;2286:34;2276:50;;:::o;2332:364::-;;2448:39;2481:5;2448:39;:::i;:::-;2503:71;2567:6;2562:3;2503:71;:::i;:::-;2496:78;;2583:52;2628:6;2623:3;2616:4;2609:5;2605:16;2583:52;:::i;:::-;2660:29;2682:6;2660:29;:::i;:::-;2655:3;2651:39;2644:46;;2424:272;;;;;:::o;2702:367::-;;2865:67;2929:2;2924:3;2865:67;:::i;:::-;2858:74;;2962:34;2958:1;2953:3;2949:11;2942:55;3028:5;3023:2;3018:3;3014:12;3007:27;3060:2;3055:3;3051:12;3044:19;;2848:221;;;:::o;3075:366::-;;3238:67;3302:2;3297:3;3238:67;:::i;:::-;3231:74;;3335:34;3331:1;3326:3;3322:11;3315:55;3401:4;3396:2;3391:3;3387:12;3380:26;3432:2;3427:3;3423:12;3416:19;;3221:220;;;:::o;3447:366::-;;3610:67;3674:2;3669:3;3610:67;:::i;:::-;3603:74;;3707:34;3703:1;3698:3;3694:11;3687:55;3773:4;3768:2;3763:3;3759:12;3752:26;3804:2;3799:3;3795:12;3788:19;;3593:220;;;:::o;3819:327::-;;3982:67;4046:2;4041:3;3982:67;:::i;:::-;3975:74;;4079:31;4075:1;4070:3;4066:11;4059:52;4137:2;4132:3;4128:12;4121:19;;3965:181;;;:::o;4152:370::-;;4315:67;4379:2;4374:3;4315:67;:::i;:::-;4308:74;;4412:34;4408:1;4403:3;4399:11;4392:55;4478:8;4473:2;4468:3;4464:12;4457:30;4513:2;4508:3;4504:12;4497:19;;4298:224;;;:::o;4528:365::-;;4691:67;4755:2;4750:3;4691:67;:::i;:::-;4684:74;;4788:34;4784:1;4779:3;4775:11;4768:55;4854:3;4849:2;4844:3;4840:12;4833:25;4884:2;4879:3;4875:12;4868:19;;4674:219;;;:::o;4899:369::-;;5062:67;5126:2;5121:3;5062:67;:::i;:::-;5055:74;;5159:34;5155:1;5150:3;5146:11;5139:55;5225:7;5220:2;5215:3;5211:12;5204:29;5259:2;5254:3;5250:12;5243:19;;5045:223;;;:::o;5274:368::-;;5437:67;5501:2;5496:3;5437:67;:::i;:::-;5430:74;;5534:34;5530:1;5525:3;5521:11;5514:55;5600:6;5595:2;5590:3;5586:12;5579:28;5633:2;5628:3;5624:12;5617:19;;5420:222;;;:::o;5648:369::-;;5811:67;5875:2;5870:3;5811:67;:::i;:::-;5804:74;;5908:34;5904:1;5899:3;5895:11;5888:55;5974:7;5969:2;5964:3;5960:12;5953:29;6008:2;6003:3;5999:12;5992:19;;5794:223;;;:::o;6023:118::-;6110:24;6128:5;6110:24;:::i;:::-;6105:3;6098:37;6088:53;;:::o;6147:112::-;6230:22;6246:5;6230:22;:::i;:::-;6225:3;6218:35;6208:51;;:::o;6265:210::-;;6390:2;6379:9;6375:18;6367:26;;6403:65;6465:1;6454:9;6450:17;6441:6;6403:65;:::i;:::-;6357:118;;;;:::o;6481:313::-;;6632:2;6621:9;6617:18;6609:26;;6681:9;6675:4;6671:20;6667:1;6656:9;6652:17;6645:47;6709:78;6782:4;6773:6;6709:78;:::i;:::-;6701:86;;6599:195;;;;:::o;6800:419::-;;7004:2;6993:9;6989:18;6981:26;;7053:9;7047:4;7043:20;7039:1;7028:9;7024:17;7017:47;7081:131;7207:4;7081:131;:::i;:::-;7073:139;;6971:248;;;:::o;7225:419::-;;7429:2;7418:9;7414:18;7406:26;;7478:9;7472:4;7468:20;7464:1;7453:9;7449:17;7442:47;7506:131;7632:4;7506:131;:::i;:::-;7498:139;;7396:248;;;:::o;7650:419::-;;7854:2;7843:9;7839:18;7831:26;;7903:9;7897:4;7893:20;7889:1;7878:9;7874:17;7867:47;7931:131;8057:4;7931:131;:::i;:::-;7923:139;;7821:248;;;:::o;8075:419::-;;8279:2;8268:9;8264:18;8256:26;;8328:9;8322:4;8318:20;8314:1;8303:9;8299:17;8292:47;8356:131;8482:4;8356:131;:::i;:::-;8348:139;;8246:248;;;:::o;8500:419::-;;8704:2;8693:9;8689:18;8681:26;;8753:9;8747:4;8743:20;8739:1;8728:9;8724:17;8717:47;8781:131;8907:4;8781:131;:::i;:::-;8773:139;;8671:248;;;:::o;8925:419::-;;9129:2;9118:9;9114:18;9106:26;;9178:9;9172:4;9168:20;9164:1;9153:9;9149:17;9142:47;9206:131;9332:4;9206:131;:::i;:::-;9198:139;;9096:248;;;:::o;9350:419::-;;9554:2;9543:9;9539:18;9531:26;;9603:9;9597:4;9593:20;9589:1;9578:9;9574:17;9567:47;9631:131;9757:4;9631:131;:::i;:::-;9623:139;;9521:248;;;:::o;9775:419::-;;9979:2;9968:9;9964:18;9956:26;;10028:9;10022:4;10018:20;10014:1;10003:9;9999:17;9992:47;10056:131;10182:4;10056:131;:::i;:::-;10048:139;;9946:248;;;:::o;10200:419::-;;10404:2;10393:9;10389:18;10381:26;;10453:9;10447:4;10443:20;10439:1;10428:9;10424:17;10417:47;10481:131;10607:4;10481:131;:::i;:::-;10473:139;;10371:248;;;:::o;10625:222::-;;10756:2;10745:9;10741:18;10733:26;;10769:71;10837:1;10826:9;10822:17;10813:6;10769:71;:::i;:::-;10723:124;;;;:::o;10853:214::-;;10980:2;10969:9;10965:18;10957:26;;10993:67;11057:1;11046:9;11042:17;11033:6;10993:67;:::i;:::-;10947:120;;;;:::o;11073:99::-;;11159:5;11153:12;11143:22;;11132:40;;;:::o;11178:169::-;;11296:6;11291:3;11284:19;11336:4;11331:3;11327:14;11312:29;;11274:73;;;;:::o;11353:305::-;;11412:20;11430:1;11412:20;:::i;:::-;11407:25;;11446:20;11464:1;11446:20;:::i;:::-;11441:25;;11600:1;11532:66;11528:74;11525:1;11522:81;11519:2;;;11606:18;;:::i;:::-;11519:2;11650:1;11647;11643:9;11636:16;;11397:261;;;;:::o;11664:191::-;;11724:20;11742:1;11724:20;:::i;:::-;11719:25;;11758:20;11776:1;11758:20;:::i;:::-;11753:25;;11797:1;11794;11791:8;11788:2;;;11802:18;;:::i;:::-;11788:2;11847:1;11844;11840:9;11832:17;;11709:146;;;;:::o;11861:96::-;;11927:24;11945:5;11927:24;:::i;:::-;11916:35;;11906:51;;;:::o;11963:90::-;;12040:5;12033:13;12026:21;12015:32;;12005:48;;;:::o;12059:126::-;;12136:42;12129:5;12125:54;12114:65;;12104:81;;;:::o;12191:77::-;;12257:5;12246:16;;12236:32;;;:::o;12274:86::-;;12349:4;12342:5;12338:16;12327:27;;12317:43;;;:::o;12366:307::-;12434:1;12444:113;12458:6;12455:1;12452:13;12444:113;;;12543:1;12538:3;12534:11;12528:18;12524:1;12519:3;12515:11;12508:39;12480:2;12477:1;12473:10;12468:15;;12444:113;;;12575:6;12572:1;12569:13;12566:2;;;12655:1;12646:6;12641:3;12637:16;12630:27;12566:2;12415:258;;;;:::o;12679:320::-;;12760:1;12754:4;12750:12;12740:22;;12807:1;12801:4;12797:12;12828:18;12818:2;;12884:4;12876:6;12872:17;12862:27;;12818:2;12946;12938:6;12935:14;12915:18;12912:38;12909:2;;;12965:18;;:::i;:::-;12909:2;12730:269;;;;:::o;13005:180::-;13053:77;13050:1;13043:88;13150:4;13147:1;13140:15;13174:4;13171:1;13164:15;13191:180;13239:77;13236:1;13229:88;13336:4;13333:1;13326:15;13360:4;13357:1;13350:15;13377:102;;13469:2;13465:7;13460:2;13453:5;13449:14;13445:28;13435:38;;13425:54;;;:::o;13485:122::-;13558:24;13576:5;13558:24;:::i;:::-;13551:5;13548:35;13538:2;;13597:1;13594;13587:12;13538:2;13528:79;:::o;13613:122::-;13686:24;13704:5;13686:24;:::i;:::-;13679:5;13676:35;13666:2;;13725:1;13722;13715:12;13666:2;13656:79;:::o
Swarm Source
ipfs://c97e7ae0f491370e248c7e3e92b68a415ecc676bc4b6b1a0ea17a2141a11d03a
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.