Contract Overview
Balance:
0 CRO
CRO Value:
$0.00
[ Download CSV Export ]
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Pink
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-12-03 */ // SPDX-License-Identifier: MIT /* ██████╗░██╗███╗░░██╗██╗░░██╗ ██████╗░░█████╗░███╗░░██╗████████╗██╗░░██╗███████╗██████╗░ ██╔══██╗██║████╗░██║██║░██╔╝ ██╔══██╗██╔══██╗████╗░██║╚══██╔══╝██║░░██║██╔════╝██╔══██╗ ██████╔╝███████║██╔██╗██║░░░██║░░░███████║█████╗░░██████╔╝ ██╔═══╝░██║██║╚████║██╔═██╗░ ██╔═══╝░██╔══██║██║╚████║░░░██║░░░██╔══██║██╔══╝░░██╔══██╗ ██║░░░░░██║██║░╚███║██║░╚██╗ ██║░░░░░██║░░██║██║░╚███║░░░██║░░░██║░░██║███████╗██║░░██║ ╚═╝░░░░░╚═╝╚═╝░░╚══╝╚═╝░░╚═╝ ╚═╝░░░░░╚═╝░░╚═╝╚═╝░░╚══╝░░░╚═╝░░░╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝ https://app.pinkpanther.zone/ */ pragma solidity >=0.6.0 <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 GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/math/[email protected] pragma solidity >=0.6.0 <0.8.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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <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 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; 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 virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 virtual returns (uint8) { return _decimals; } /** * @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: * * - `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 virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <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 { using SafeMath for uint256; /** * @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 { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // File @openzeppelin/contracts/math/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } // File contracts/lib/SafeMath8.sol pragma solidity 0.6.12; /** * @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 SafeMath8 { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint8 a, uint8 b) internal pure returns (uint8) { uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { 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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) { require(b <= a, errorMessage); uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { // 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; } uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { 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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) { require(b > 0, errorMessage); uint8 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(uint8 a, uint8 b) internal pure returns (uint8) { 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(uint8 a, uint8 b, string memory errorMessage) internal pure returns (uint8) { require(b != 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/GSN/[email protected] pragma solidity >=0.6.0 <0.8.0; // File @openzeppelin/contracts/access/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @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. */ abstract 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 virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File contracts/owner/Operator.sol pragma solidity 0.6.12; contract Operator is Context, Ownable { address private _operator; event OperatorTransferred(address indexed previousOperator, address indexed newOperator); constructor() internal { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); } function operator() public view returns (address) { return _operator; } modifier onlyOperator() { require(_operator == msg.sender, "operator: caller is not the operator"); _; } function isOperator() public view returns (bool) { return _msgSender() == _operator; } function transferOperator(address newOperator_) public onlyOwner { _transferOperator(newOperator_); } function _transferOperator(address newOperator_) internal { require(newOperator_ != address(0), "operator: zero address given for new operator"); emit OperatorTransferred(address(0), newOperator_); _operator = newOperator_; } } // File contracts/interfaces/IOracle.sol pragma solidity 0.6.12; interface IOracle { function update() external; function consult(address _token, uint256 _amountIn) external view returns (uint144 amountOut); function twap(address _token, uint256 _amountIn) external view returns (uint144 _amountOut); } // File contracts/Pink.sol pragma solidity 0.6.12; contract Pink is ERC20Burnable, Operator { using SafeMath8 for uint8; using SafeMath for uint256; // Initial distribution for the first 48h genesis pools uint256 public constant INITIAL_GENESIS_POOL_DISTRIBUTION = 50000 ether; // Initial distribution for the day 2-5 PINK-WCRO LP -> PINK pool uint256 public constant INITIAL_PINK_POOL_DISTRIBUTION = 150000 ether; // Distribution for airdrops wallet uint256 public constant INITIAL_AIRDROP_WALLET_DISTRIBUTION = 10000 ether; // Have the rewards been distributed to the pools bool public rewardPoolDistributed = false; /* ================= Taxation =============== */ // Address of the Oracle address public pinkOracle; // Address of the Tax Office address public taxOffice; // Current tax rate uint256 public taxRate; // Price threshold below which taxes will get burned uint256 public burnThreshold = 1.10e18; // Address of the tax collector wallet address public taxCollectorAddress; // Should the taxes be calculated using the tax tiers bool public autoCalculateTax; // Tax Tiers uint256[] public taxTiersTwaps = [0, 5e17, 6e17, 7e17, 8e17, 9e17, 9.5e17, 1e18, 1.05e18, 1.10e18, 1.20e18, 1.30e18, 1.40e18, 1.50e18]; uint256[] public taxTiersRates = [2000, 1900, 1800, 1700, 1600, 1500, 1500, 1500, 1500, 1400, 900, 400, 200, 100]; // Sender addresses excluded from Tax mapping(address => bool) public excludedAddresses; event TaxOfficeTransferred(address oldAddress, address newAddress); modifier onlyTaxOffice() { require(taxOffice == msg.sender, "Caller is not the tax office"); _; } modifier onlyOperatorOrTaxOffice() { require(isOperator() || taxOffice == msg.sender, "Caller is not the operator or the tax office"); _; } /** * @notice Constructs the PINK ERC-20 contract. */ constructor(uint256 _taxRate, address _taxCollectorAddress) public ERC20("Pink Panther", "PINK") { // Mints 1 PINK to contract creator for initial pool setup require(_taxRate < 10000, "tax equal or bigger to 100%"); require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address"); excludeAddress(address(this)); _mint(msg.sender, 100 ether); taxRate = _taxRate; taxCollectorAddress = _taxCollectorAddress; } /* ============= Taxation ============= */ function getTaxTiersTwapsCount() public view returns (uint256 count) { return taxTiersTwaps.length; } function getTaxTiersRatesCount() public view returns (uint256 count) { return taxTiersRates.length; } function isAddressExcluded(address _address) public view returns (bool) { return excludedAddresses[_address]; } function setTaxTiersTwap(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require(_index < getTaxTiersTwapsCount(), "Index has to lower than count of tax tiers"); if (_index > 0) { require(_value > taxTiersTwaps[_index - 1]); } if (_index < getTaxTiersTwapsCount().sub(1)) { require(_value < taxTiersTwaps[_index + 1]); } taxTiersTwaps[_index] = _value; return true; } function setTaxTiersRate(uint8 _index, uint256 _value) public onlyTaxOffice returns (bool) { require(_index >= 0, "Index has to be higher than 0"); require(_index < getTaxTiersRatesCount(), "Index has to lower than count of tax tiers"); taxTiersRates[_index] = _value; return true; } function setBurnThreshold(uint256 _burnThreshold) public onlyTaxOffice returns (bool) { burnThreshold = _burnThreshold; } function _getPinkPrice() internal view returns (uint256 _pinkPrice) { try IOracle(pinkOracle).consult(address(this), 1e18) returns (uint144 _price) { return uint256(_price); } catch { revert("Pink: failed to fetch PINK price from Oracle"); } } function _updateTaxRate(uint256 _pinkPrice) internal returns (uint256) { if (autoCalculateTax) { for (uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1); tierId >= 0; --tierId) { if (_pinkPrice >= taxTiersTwaps[tierId]) { require(taxTiersRates[tierId] < 10000, "tax equal or bigger to 100%"); taxRate = taxTiersRates[tierId]; return taxTiersRates[tierId]; } } } } function enableAutoCalculateTax() public onlyTaxOffice { autoCalculateTax = true; } function disableAutoCalculateTax() public onlyTaxOffice { autoCalculateTax = false; } function setPinkOracle(address _pinkOracle) public onlyOperatorOrTaxOffice { require(_pinkOracle != address(0), "oracle address cannot be 0 address"); pinkOracle = _pinkOracle; } function setTaxOffice(address _taxOffice) public onlyOperatorOrTaxOffice { require(_taxOffice != address(0), "tax office address cannot be 0 address"); emit TaxOfficeTransferred(taxOffice, _taxOffice); taxOffice = _taxOffice; } function setTaxCollectorAddress(address _taxCollectorAddress) public onlyTaxOffice { require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address"); taxCollectorAddress = _taxCollectorAddress; } function setTaxRate(uint256 _taxRate) public onlyTaxOffice { require(!autoCalculateTax, "auto calculate tax cannot be enabled"); require(_taxRate < 10000, "tax equal or bigger to 100%"); taxRate = _taxRate; } function excludeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) { require(!excludedAddresses[_address], "address can't be excluded"); excludedAddresses[_address] = true; return true; } function includeAddress(address _address) public onlyOperatorOrTaxOffice returns (bool) { require(excludedAddresses[_address], "address can't be included"); excludedAddresses[_address] = false; return true; } /** * @notice Operator mints PINK to a recipient * @param recipient_ The address of recipient * @param amount_ The amount of PINK to mint to * @return whether the process has been done */ function mint(address recipient_, uint256 amount_) public onlyOperator returns (bool) { uint256 balanceBefore = balanceOf(recipient_); _mint(recipient_, amount_); uint256 balanceAfter = balanceOf(recipient_); return balanceAfter > balanceBefore; } function burn(uint256 amount) public override { super.burn(amount); } function burnFrom(address account, uint256 amount) public override onlyOperator { super.burnFrom(account, amount); } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { uint256 currentTaxRate = 0; bool burnTax = false; if (autoCalculateTax) { uint256 currentPinkPrice = _getPinkPrice(); currentTaxRate = _updateTaxRate(currentPinkPrice); if (currentPinkPrice < burnThreshold) { burnTax = true; } } if (currentTaxRate == 0 || excludedAddresses[sender]) { _transfer(sender, recipient, amount); } else { _transferWithTax(sender, recipient, amount, burnTax); } _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function _transferWithTax( address sender, address recipient, uint256 amount, bool burnTax ) internal returns (bool) { uint256 taxAmount = amount.mul(taxRate).div(10000); uint256 amountAfterTax = amount.sub(taxAmount); if (burnTax) { // Burn tax super.burnFrom(sender, taxAmount); } else { // Transfer tax to tax collector _transfer(sender, taxCollectorAddress, taxAmount); } // Transfer amount after tax to recipient _transfer(sender, recipient, amountAfterTax); return true; } /** * @notice distribute to reward pool (only once) */ function distributeReward( address _genesisPool, address _pinkPool, address _airdropWallet ) external onlyOperator { require(!rewardPoolDistributed, "only can distribute once"); require(_genesisPool != address(0), "!_genesisPool"); require(_pinkPool != address(0), "!_pinkPool"); require(_airdropWallet != address(0), "!_airdropWallet"); rewardPoolDistributed = true; _mint(_genesisPool, INITIAL_GENESIS_POOL_DISTRIBUTION); _mint(_pinkPool, INITIAL_PINK_POOL_DISTRIBUTION); _mint(_airdropWallet, INITIAL_AIRDROP_WALLET_DISTRIBUTION); } function governanceRecoverUnsupported( IERC20 _token, uint256 _amount, address _to ) external onlyOperator { _token.transfer(_to, _amount); } }
[{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"},{"internalType":"address","name":"_taxCollectorAddress","type":"address"}],"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":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":false,"internalType":"address","name":"oldAddress","type":"address"},{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"TaxOfficeTransferred","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":[],"name":"INITIAL_AIRDROP_WALLET_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_GENESIS_POOL_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_PINK_POOL_DISTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoCalculateTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"burnThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_genesisPool","type":"address"},{"internalType":"address","name":"_pinkPool","type":"address"},{"internalType":"address","name":"_airdropWallet","type":"address"}],"name":"distributeReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAutoCalculateTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"excludeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersRatesCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTaxTiersTwapsCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"includeAddress","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","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":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pinkOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPoolDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnThreshold","type":"uint256"}],"name":"setBurnThreshold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pinkOracle","type":"address"}],"name":"setPinkOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxCollectorAddress","type":"address"}],"name":"setTaxCollectorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxOffice","type":"address"}],"name":"setTaxOffice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersRate","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setTaxTiersTwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxCollectorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxOffice","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersRates","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"taxTiersTwaps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6006805460ff60a01b19169055670f43fc2c04ee0000600a819055610240604052600060809081526706f05b59d3b2000060a052670853a0d2313c000060c0526709b6e64a8ec6000060e052670b1a2bc2ec50000061010052670c7d713b49da000061012052670d2f13f7789f000061014052670de0b6b3a764000061016052670e92596fd6290000610180526101a0919091526710a741a4627800006101c05267120a871cc00200006101e05267136dcc951d8c0000610200526714d1120d7b16000061022052620000d790600c90600e62000656565b50604080516101c0810182526107d0815261076c6020820152610708918101919091526106a4606082015261064060808201526105dc60a0820181905260c0820181905260e0820181905261010082015261057861012082015261038461014082015261019061016082015260c861018082015260646101a08201526200016390600d90600e620006b1565b503480156200017157600080fd5b506040516200307938038062003079833981810160405260408110156200019757600080fd5b508051602091820151604080518082018252600c81526b2834b735902830b73a3432b960a11b8186019081528251808401909352600483526350494e4b60e01b958301959095528051939492939092620001f59160039190620006f5565b5080516200020b906004906020840190620006f5565b50506005805460ff1916601217905550600062000227620003bd565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000287620003bd565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a361271082106200032a576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b6001600160a01b038116620003715760405162461bcd60e51b815260040180806020018281038252602e8152602001806200301f602e913960400191505060405180910390fd5b6200037c30620003c1565b50620003923368056bc75e2d63100000620004b8565b600991909155600b80546001600160a01b0319166001600160a01b039092169190911790556200077f565b3390565b6000620003cd620005c7565b80620003e357506008546001600160a01b031633145b620004205760405162461bcd60e51b815260040180806020018281038252602c8152602001806200304d602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff16156200048f576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff1916600190811790915590565b6001600160a01b03821662000514576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200052260008383620005ef565b6200053e81600254620005f460201b62001ae51790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200057191839062001ae5620005f4821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6006546000906001600160a01b0316620005e0620003bd565b6001600160a01b031614905090565b505050565b6000828201838110156200064f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b8280548282559060005260206000209081019282156200069f579160200282015b828111156200069f57825182906001600160401b031690559160200191906001019062000677565b50620006ad92915062000768565b5090565b8280548282559060005260206000209081019282156200069f579160200282015b828111156200069f578251829061ffff16905591602001919060010190620006d2565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200073857805160ff19168380011785556200069f565b828001600101855582156200069f579182015b828111156200069f5782518255916020019190600101906200074b565b5b80821115620006ad576000815560010162000769565b612890806200078f6000396000f3fe608060405234801561001057600080fd5b50600436106102bb5760003560e01c806366206ce911610182578063a457c2d7116100e9578063cf011b26116100a2578063ee2a95351161007c578063ee2a953514610834578063f2fde38b1461083c578063ff87fc7c14610862578063ffa8226e1461086a576102bb565b8063cf011b26146107ba578063dd62ed3e146107e0578063ebca1bd91461080e576102bb565b8063a457c2d71461070f578063a6431bba1461073b578063a9059cbb14610743578063b87c5a4a1461076f578063c3bdf61314610795578063c6d69a301461079d576102bb565b80638d3cc8181161013b5780638d3cc818146106ac5780638da5cb5b146106b457806393995d4b146106bc57806395d89b41146106e25780639662676c146106ea5780639d6b5f21146106f2576102bb565b806366206ce9146105fe57806369356d471461062457806370a082311461064a578063715018a614610670578063771a3a1d1461067857806379cc679014610680576102bb565b80633f24ca7d116102265780634f6d38d0116101df5780634f6d38d01461055b578063521181d51461056357806354575af41461059b578063570ca735146105d15780635c29908d146105d957806365bbacd9146105f6576102bb565b80633f24ca7d146104dd57806340c10f19146104e557806342966c681461051157806342c6b4f11461052e5780634456eda21461054b5780634e20a02c14610553576102bb565b8063313ce56711610278578063313ce56714610419578063367b3d4c146104375780633758e6ce1461045d57806339509351146104835780633e5f13d4146104af5780633f07d76a146104b7576102bb565b806306fdde03146102c0578063095ea7b31461033d57806318160ddd1461037d57806323b872dd1461039757806329605e77146103cd5780632a969515146103f5575b600080fd5b6102c8610872565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103025781810151838201526020016102ea565b50505050905090810190601f16801561032f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103696004803603604081101561035357600080fd5b506001600160a01b038135169060200135610909565b604080519115158252519081900360200190f35b610385610927565b60408051918252519081900360200190f35b610369600480360360608110156103ad57600080fd5b506001600160a01b0381358116916020810135909116906040013561092d565b6103f3600480360360208110156103e357600080fd5b50356001600160a01b0316610a08565b005b6103fd610a88565b604080516001600160a01b039092168252519081900360200190f35b610421610a97565b6040805160ff9092168252519081900360200190f35b6103f36004803603602081101561044d57600080fd5b50356001600160a01b0316610aa0565b6103696004803603602081101561047357600080fd5b50356001600160a01b0316610b5f565b6103696004803603604081101561049957600080fd5b506001600160a01b038135169060200135610c54565b6103fd610ca2565b6103f3600480360360208110156104cd57600080fd5b50356001600160a01b0316610cb1565b610385610db8565b610369600480360360408110156104fb57600080fd5b506001600160a01b038135169060200135610dc6565b6103f36004803603602081101561052757600080fd5b5035610e40565b6103856004803603602081101561054457600080fd5b5035610e49565b610369610e67565b610385610e8d565b610385610e9b565b6103f36004803603606081101561057957600080fd5b506001600160a01b038135811691602081013582169160409091013516610ea1565b6103f3600480360360608110156105b157600080fd5b506001600160a01b0381358116916020810135916040909101351661107d565b6103fd61114e565b610385600480360360208110156105ef57600080fd5b503561115d565b6103f361116a565b6103696004803603604081101561061457600080fd5b5060ff81351690602001356111c6565b6103f36004803603602081101561063a57600080fd5b50356001600160a01b03166112fc565b6103856004803603602081101561066057600080fd5b50356001600160a01b03166113b0565b6103f36113cb565b61038561148f565b6103f36004803603604081101561069657600080fd5b506001600160a01b038135169060200135611495565b6103696114ec565b6103fd6114fc565b610369600480360360208110156106d257600080fd5b50356001600160a01b0316611510565b6102c86115fc565b61036961165d565b6103696004803603602081101561070857600080fd5b503561166d565b6103696004803603604081101561072557600080fd5b506001600160a01b0381351690602001356116c6565b61038561172e565b6103696004803603604081101561075957600080fd5b506001600160a01b038135169060200135611734565b6103696004803603604081101561078557600080fd5b5060ff8135169060200135611748565b6103fd6117f1565b6103f3600480360360208110156107b357600080fd5b5035611800565b610369600480360360208110156107d057600080fd5b50356001600160a01b03166118f1565b610385600480360360408110156107f657600080fd5b506001600160a01b0381358116916020013516611906565b6103696004803603602081101561082457600080fd5b50356001600160a01b0316611931565b61038561194f565b6103f36004803603602081101561085257600080fd5b50356001600160a01b0316611955565b6103f3611a75565b610385611ad7565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b505050505090505b90565b600061091d610916611b46565b8484611b4a565b5060015b92915050565b60025490565b600b5460009081908190600160a01b900460ff161561096e576000610950611c36565b905061095b81611d0a565b9250600a5481101561096c57600191505b505b81158061099357506001600160a01b0386166000908152600e602052604090205460ff165b156109a8576109a3868686611e18565b6109b6565b6109b486868684611f73565b505b6109fc866109c2611b46565b6109f787604051806060016040528060288152602001612666602891396109f08c6109eb611b46565b611906565b9190611fec565b611b4a565b50600195945050505050565b610a10611b46565b6001600160a01b0316610a216114fc565b6001600160a01b031614610a7c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a8581612083565b50565b6007546001600160a01b031681565b60055460ff1690565b610aa8610e67565b80610abd57506008546001600160a01b031633145b610af85760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ba602c913960400191505060405180910390fd5b6001600160a01b038116610b3d5760405162461bcd60e51b815260040180806020018281038252602281526020018061274f6022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b69610e67565b80610b7e57506008546001600160a01b031633145b610bb95760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ba602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610c27576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b600061091d610c61611b46565b846109f78560016000610c72611b46565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611ae5565b6008546001600160a01b031681565b610cb9610e67565b80610cce57506008546001600160a01b031633145b610d095760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ba602c913960400191505060405180910390fd5b6001600160a01b038116610d4e5760405162461bcd60e51b81526004018080602001828103825260268152602001806125f26026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b691fc3842bd1f071c0000081565b6006546000906001600160a01b03163314610e125760405162461bcd60e51b81526004018080602001828103825260248152602001806126e06024913960400191505060405180910390fd5b6000610e1d846113b0565b9050610e298484612120565b6000610e34856113b0565b91909111949350505050565b610a8581612210565b600c8181548110610e5657fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610e7e611b46565b6001600160a01b031614905090565b690a968163f0a57b40000081565b600a5481565b6006546001600160a01b03163314610eea5760405162461bcd60e51b81526004018080602001828103825260248152602001806126e06024913960400191505060405180910390fd5b600654600160a01b900460ff1615610f49576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b038316610f94576040805162461bcd60e51b815260206004820152600d60248201526c0857d9d95b995cda5cd41bdbdb609a1b604482015290519081900360640190fd5b6001600160a01b038216610fdc576040805162461bcd60e51b815260206004820152600a6024820152690857dc1a5b9ad41bdbdb60b21b604482015290519081900360640190fd5b6001600160a01b038116611029576040805162461bcd60e51b815260206004820152600f60248201526e0857d85a5c991c9bdc15d85b1b195d608a1b604482015290519081900360640190fd5b6006805460ff60a01b1916600160a01b17905561105083690a968163f0a57b400000612120565b61106482691fc3842bd1f071c00000612120565b6110788169021e19e0c9bab2400000612120565b505050565b6006546001600160a01b031633146110c65760405162461bcd60e51b81526004018080602001828103825260248152602001806126e06024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b15801561111d57600080fd5b505af1158015611131573d6000803e3d6000fd5b505050506040513d602081101561114757600080fd5b5050505050565b6006546001600160a01b031690565b600d8181548110610e5657fe5b6008546001600160a01b031633146111b7576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b6008546000906001600160a01b03163314611216576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b61121e61172e565b8360ff161061125e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612704602a913960400191505060405180910390fd5b60ff83161561129057600c6001840360ff168154811061127a57fe5b9060005260206000200154821161129057600080fd5b6112a3600161129d61172e565b90612221565b8360ff1610156112d657600c8360010160ff16815481106112c057fe5b906000526020600020015482106112d657600080fd5b81600c8460ff16815481106112e757fe5b60009182526020909120015550600192915050565b6008546001600160a01b03163314611349576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b6001600160a01b03811661138e5760405162461bcd60e51b815260040180806020018281038252602e81526020018061268e602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6113d3611b46565b6001600160a01b03166113e46114fc565b6001600160a01b03161461143f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60095481565b6006546001600160a01b031633146114de5760405162461bcd60e51b81526004018080602001828103825260248152602001806126e06024913960400191505060405180910390fd5b6114e8828261227e565b5050565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b600061151a610e67565b8061152f57506008546001600160a01b031633145b61156a5760405162461bcd60e51b815260040180806020018281038252602c8152602001806127ba602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166115d7576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b600654600160a01b900460ff1681565b6008546000906001600160a01b031633146116bd576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b600a9190915590565b600061091d6116d3611b46565b846109f78560405180606001604052806025815260200161283660259139600160006116fd611b46565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fec565b600c5490565b600061091d611741611b46565b8484611e18565b6008546000906001600160a01b03163314611798576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b6117a061194f565b8360ff16106117e05760405162461bcd60e51b815260040180806020018281038252602a815260200180612704602a913960400191505060405180910390fd5b81600d8460ff16815481106112e757fe5b600b546001600160a01b031681565b6008546001600160a01b0316331461184d576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff16156118965760405162461bcd60e51b81526004018080602001828103825260248152602001806127716024913960400191505060405180910390fd5b61271081106118ec576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b61195d611b46565b6001600160a01b031661196e6114fc565b6001600160a01b0316146119c9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116611a0e5760405162461bcd60e51b81526004018080602001828103825260268152602001806125646026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b03163314611ac2576040805162461bcd60e51b815260206004820152601c60248201526000805160206125ac833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b69021e19e0c9bab240000081565b600082820183811015611b3f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b038316611b8f5760405162461bcd60e51b81526004018080602001828103825260248152602001806127e66024913960400191505060405180910390fd5b6001600160a01b038216611bd45760405162461bcd60e51b815260040180806020018281038252602281526020018061258a6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b158015611c8f57600080fd5b505afa925050508015611cb457506040513d6020811015611caf57600080fd5b505160015b611cef5760405162461bcd60e51b815260040180806020018281038252602c81526020018061280a602c913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff169050610906565b600b54600090600160a01b900460ff1615610c4f576000611d376001611d2e61172e565b60ff16906122c7565b90505b600c8160ff1681548110611d4a57fe5b90600052602060002001548310611e0f57612710600d8260ff1681548110611d6e57fe5b906000526020600020015410611dcb576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611ddb57fe5b9060005260206000200154600981905550600d8160ff1681548110611dfc57fe5b9060005260206000200154915050610c4f565b60001901611d3a565b6001600160a01b038316611e5d5760405162461bcd60e51b81526004018080602001828103825260258152602001806127956025913960400191505060405180910390fd5b6001600160a01b038216611ea25760405162461bcd60e51b815260040180806020018281038252602381526020018061251f6023913960400191505060405180910390fd5b611ead838383611078565b611eea816040518060600160405280602681526020016125cc602691396001600160a01b0386166000908152602081905260409020549190611fec565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f199082611ae5565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611f97612710611f916009548761230990919063ffffffff16565b90612362565b90506000611fa58583612221565b90508315611fbc57611fb7878361227e565b611fd4565b600b54611fd49088906001600160a01b031684611e18565b611fdf878783611e18565b5060019695505050505050565b6000818484111561207b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612040578181015183820152602001612028565b50505050905090810190601f16801561206d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0381166120c85760405162461bcd60e51b815260040180806020018281038252602d815260200180612618602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821661217b576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61218760008383611078565b6002546121949082611ae5565b6002556001600160a01b0382166000908152602081905260409020546121ba9082611ae5565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610a8561221b611b46565b826123c9565b600082821115612278576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006122a9826040518060600160405280602481526020016126bc602491396109f0866109eb611b46565b90506122bd836122b7611b46565b83611b4a565b61107883836123c9565b6000611b3f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506124c5565b60008261231857506000610921565b8282028284828161232557fe5b0414611b3f5760405162461bcd60e51b81526004018080602001828103825260218152602001806126456021913960400191505060405180910390fd5b60008082116123b8576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816123c157fe5b049392505050565b6001600160a01b03821661240e5760405162461bcd60e51b815260040180806020018281038252602181526020018061272e6021913960400191505060405180910390fd5b61241a82600083611078565b61245781604051806060016040528060228152602001612542602291396001600160a01b0385166000908152602081905260409020549190611fec565b6001600160a01b03831660009081526020819052604090205560025461247d9082612221565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff161115829061207b5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561204057818101518382015260200161202856fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737350696e6b3a206661696c656420746f2066657463682050494e4b2070726963652066726f6d204f7261636c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122000e149eaf5c7ce264746b7f4d831aa3e0ff1ec8a10a2f7b7eacbfc2d9c8f81e364736f6c634300060c003374617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f66666963650000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f84d4ba8f7e1a8143791a9871956454e610313c8
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f84d4ba8f7e1a8143791a9871956454e610313c8
-----Decoded View---------------
Arg [0] : _taxRate (uint256): 1
Arg [1] : _taxCollectorAddress (address): 0xf84d4ba8f7e1a8143791a9871956454e610313c8
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 000000000000000000000000f84d4ba8f7e1a8143791a9871956454e610313c8
Deployed ByteCode Sourcemap
35328:9652:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15098:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17244:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17244:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;16197:108;;;:::i;:::-;;;;;;;;;;;;;;;;42546:850;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42546:850:0;;;;;;;;;;;;;;;;;:::i;34540:115::-;;;;;;;;;;;;;;;;-1:-1:-1;34540:115:0;-1:-1:-1;;;;;34540:115:0;;:::i;:::-;;36041:25;;;:::i;:::-;;;;-1:-1:-1;;;;;36041:25:0;;;;;;;;;;;;;;16041:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40320:201;;;;;;;;;;;;;;;;-1:-1:-1;40320:201:0;-1:-1:-1;;;;;40320:201:0;;:::i;41300:240::-;;;;;;;;;;;;;;;;-1:-1:-1;41300:240:0;-1:-1:-1;;;;;41300:240:0;;:::i;18625:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18625:218:0;;;;;;;;:::i;36107:24::-;;;:::i;40529:259::-;;;;;;;;;;;;;;;;-1:-1:-1;40529:259:0;-1:-1:-1;;;;;40529:259:0;;:::i;35653:69::-;;;:::i;42019:290::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42019:290:0;;;;;;;;:::i;42317:83::-;;;;;;;;;;;;;;;;-1:-1:-1;42317:83:0;;:::i;36498:134::-;;;;;;;;;;;;;;;;-1:-1:-1;36498:134:0;;:::i;34432:100::-;;;:::i;35504:71::-;;;:::i;36252:38::-;;;:::i;44138:644::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44138:644:0;;;;;;;;;;;;;;;;;;;:::i;44790:187::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44790:187:0;;;;;;;;;;;;;;;;;:::i;34204:85::-;;;:::i;36639:113::-;;;;;;;;;;;;;;;;-1:-1:-1;36639:113:0;;:::i;40213:99::-;;;:::i;38252:545::-;;;;;;;;;;;;;;;;-1:-1:-1;38252:545:0;;;;;;;;;:::i;40796:248::-;;;;;;;;;;;;;;;;-1:-1:-1;40796:248:0;-1:-1:-1;;;;;40796:248:0;;:::i;16368:127::-;;;;;;;;;;;;;;;;-1:-1:-1;16368:127:0;-1:-1:-1;;;;;16368:127:0;;:::i;33267:148::-;;;:::i;36165:22::-;;;:::i;42408:130::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42408:130:0;;;;;;;;:::i;36443:28::-;;;:::i;32616:87::-;;;:::i;41548:240::-;;;;;;;;;;;;;;;;-1:-1:-1;41548:240:0;-1:-1:-1;;;;;41548:240:0;;:::i;15308:95::-;;;:::i;35907:41::-;;;:::i;39137:135::-;;;;;;;;;;;;;;;;-1:-1:-1;39137:135:0;;:::i;19346:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19346:269:0;;;;;;;;:::i;37873:115::-;;;:::i;16708:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16708:175:0;;;;;;;;:::i;38805:324::-;;;;;;;;;;;;;;;;-1:-1:-1;38805:324:0;;;;;;;;;:::i;36341:34::-;;;:::i;41052:240::-;;;;;;;;;;;;;;;;-1:-1:-1;41052:240:0;;:::i;36804:49::-;;;;;;;;;;;;;;;;-1:-1:-1;36804:49:0;-1:-1:-1;;;;;36804:49:0;;:::i;16946:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16946:151:0;;;;;;;;;;:::i;38119:125::-;;;;;;;;;;;;;;;;-1:-1:-1;38119:125:0;-1:-1:-1;;;;;38119:125:0;;:::i;37996:115::-;;;:::i;33570:244::-;;;;;;;;;;;;;;;;-1:-1:-1;33570:244:0;-1:-1:-1;;;;;33570:244:0;;:::i;40108:97::-;;;:::i;35770:73::-;;;:::i;15098:91::-;15176:5;15169:12;;;;;;;;-1:-1:-1;;15169:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15143:13;;15169:12;;15176:5;;15169:12;;15176:5;15169:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15098:91;;:::o;17244:169::-;17327:4;17344:39;17353:12;:10;:12::i;:::-;17367:7;17376:6;17344:8;:39::i;:::-;-1:-1:-1;17401:4:0;17244:169;;;;;:::o;16197:108::-;16285:12;;16197:108;:::o;42546:850::-;42769:16;;42678:4;;;;;;-1:-1:-1;;;42769:16:0;;;;42765:256;;;42802:24;42829:15;:13;:15::i;:::-;42802:42;;42876:32;42891:16;42876:14;:32::i;:::-;42859:49;;42946:13;;42927:16;:32;42923:87;;;42990:4;42980:14;;42923:87;42765:256;;43037:19;;;:48;;-1:-1:-1;;;;;;43060:25:0;;;;;;:17;:25;;;;;;;;43037:48;43033:202;;;43102:36;43112:6;43120:9;43131:6;43102:9;:36::i;:::-;43033:202;;;43171:52;43188:6;43196:9;43207:6;43215:7;43171:16;:52::i;:::-;;43033:202;43247:119;43256:6;43264:12;:10;:12::i;:::-;43278:87;43314:6;43278:87;;;;;;;;;;;;;;;;;:31;43288:6;43296:12;:10;:12::i;:::-;43278:9;:31::i;:::-;:35;:87;:35;:87::i;:::-;43247:8;:119::i;:::-;-1:-1:-1;43384:4:0;;42546:850;-1:-1:-1;;;;;42546:850:0:o;34540:115::-;32847:12;:10;:12::i;:::-;-1:-1:-1;;;;;32836:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32836:23:0;;32828:68;;;;;-1:-1:-1;;;32828:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34616:31:::1;34634:12;34616:17;:31::i;:::-;34540:115:::0;:::o;36041:25::-;;;-1:-1:-1;;;;;36041:25:0;;:::o;16041:91::-;16115:9;;;;16041:91;:::o;40320:201::-;37119:12;:10;:12::i;:::-;:39;;;-1:-1:-1;37135:9:0;;-1:-1:-1;;;;;37135:9:0;37148:10;37135:23;37119:39;37111:96;;;;-1:-1:-1;;;37111:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40414:25:0;::::1;40406:72;;;;-1:-1:-1::0;;;40406:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40489:10;:24:::0;;-1:-1:-1;;;;;;40489:24:0::1;-1:-1:-1::0;;;;;40489:24:0;;;::::1;::::0;;;::::1;::::0;;40320:201::o;41300:240::-;41382:4;37119:12;:10;:12::i;:::-;:39;;;-1:-1:-1;37135:9:0;;-1:-1:-1;;;;;37135:9:0;37148:10;37135:23;37119:39;37111:96;;;;-1:-1:-1;;;37111:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41408:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;41407:28;41399:66;;;::::0;;-1:-1:-1;;;41399:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;41476:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;:34;;-1:-1:-1;;41476:34:0::1;41506:4;41476:34:::0;;::::1;::::0;;;37218:1:::1;41300:240:::0;;;:::o;18625:218::-;18713:4;18730:83;18739:12;:10;:12::i;:::-;18753:7;18762:50;18801:10;18762:11;:25;18774:12;:10;:12::i;:::-;-1:-1:-1;;;;;18762:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18762:25:0;;;:34;;;;;;;;;;;:38;:50::i;36107:24::-;;;-1:-1:-1;;;;;36107:24:0;;:::o;40529:259::-;37119:12;:10;:12::i;:::-;:39;;;-1:-1:-1;37135:9:0;;-1:-1:-1;;;;;37135:9:0;37148:10;37135:23;37119:39;37111:96;;;;-1:-1:-1;;;37111:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40621:24:0;::::1;40613:75;;;;-1:-1:-1::0;;;40613:75:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40725:9;::::0;40704:43:::1;::::0;;-1:-1:-1;;;;;40725:9:0;;::::1;40704:43:::0;;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;::::1;40758:9;:22:::0;;-1:-1:-1;;;;;;40758:22:0::1;-1:-1:-1::0;;;;;40758:22:0;;;::::1;::::0;;;::::1;::::0;;40529:259::o;35653:69::-;35710:12;35653:69;:::o;42019:290::-;34340:9;;42099:4;;-1:-1:-1;;;;;34340:9:0;34353:10;34340:23;34332:72;;;;-1:-1:-1;;;34332:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42116:21:::1;42140;42150:10;42140:9;:21::i;:::-;42116:45;;42172:26;42178:10;42190:7;42172:5;:26::i;:::-;42209:20;42232:21;42242:10;42232:9;:21::i;:::-;42273:28:::0;;;::::1;::::0;42019:290;-1:-1:-1;;;;42019:290:0:o;42317:83::-;42374:18;42385:6;42374:10;:18::i;36498:134::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36498:134:0;:::o;34432:100::-;34515:9;;34475:4;;-1:-1:-1;;;;;34515:9:0;34499:12;:10;:12::i;:::-;-1:-1:-1;;;;;34499:25:0;;34492:32;;34432:100;:::o;35504:71::-;35564:11;35504:71;:::o;36252:38::-;;;;:::o;44138:644::-;34340:9;;-1:-1:-1;;;;;34340:9:0;34353:10;34340:23;34332:72;;;;-1:-1:-1;;;34332:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44305:21:::1;::::0;-1:-1:-1;;;44305:21:0;::::1;;;44304:22;44296:59;;;::::0;;-1:-1:-1;;;44296:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;44374:26:0;::::1;44366:52;;;::::0;;-1:-1:-1;;;44366:52:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44366:52:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;44437:23:0;::::1;44429:46;;;::::0;;-1:-1:-1;;;44429:46:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44429:46:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;44494:28:0;::::1;44486:56;;;::::0;;-1:-1:-1;;;44486:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44486:56:0;;;;;;;;;;;;;::::1;;44553:21;:28:::0;;-1:-1:-1;;;;44553:28:0::1;-1:-1:-1::0;;;44553:28:0::1;::::0;;44592:54:::1;44598:12:::0;35564:11:::1;44592:5;:54::i;:::-;44657:48;44663:9;35710:12;44657:5;:48::i;:::-;44716:58;44722:14;35832:11;44716:5;:58::i;:::-;44138:644:::0;;;:::o;44790:187::-;34340:9;;-1:-1:-1;;;;;34340:9:0;34353:10;34340:23;34332:72;;;;-1:-1:-1;;;34332:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44940:6:::1;-1:-1:-1::0;;;;;44940:15:0::1;;44956:3;44961:7;44940:29;;;;;;;;;;;;;-1:-1:-1::0;;;;;44940:29:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;;;;44790:187:0:o;34204:85::-;34272:9;;-1:-1:-1;;;;;34272:9:0;34204:85;:::o;36639:113::-;;;;;;;;;;40213:99;36981:9;;-1:-1:-1;;;;;36981:9:0;36994:10;36981:23;36973:64;;;;;-1:-1:-1;;;36973:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36973:64:0;;;;;;;;;;;;;;;40280:16:::1;:24:::0;;-1:-1:-1;;;;40280:24:0::1;::::0;;40213:99::o;38252:545::-;36981:9;;38337:4;;-1:-1:-1;;;;;36981:9:0;36994:10;36981:23;36973:64;;;;;-1:-1:-1;;;36973:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36973:64:0;;;;;;;;;;;;;;;38435:23:::1;:21;:23::i;:::-;38426:6;:32;;;38418:87;;;;-1:-1:-1::0;;;38418:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38520:10;::::0;::::1;::::0;38516:86:::1;;38564:13;38587:1;38578:6;:10;38564:25;;;;;;;;;;;;;;;;;;38555:6;:34;38547:43;;;::::0;::::1;;38625:30;38653:1;38625:23;:21;:23::i;:::-;:27:::0;::::1;:30::i;:::-;38616:6;:39;;;38612:115;;;38689:13;38703:6;38712:1;38703:10;38689:25;;;;;;;;;;;;;;;;;;38680:6;:34;38672:43;;;::::0;::::1;;38761:6;38737:13;38751:6;38737:21;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:30:::0;-1:-1:-1;38785:4:0::1;38252:545:::0;;;;:::o;40796:248::-;36981:9;;-1:-1:-1;;;;;36981:9:0;36994:10;36981:23;36973:64;;;;;-1:-1:-1;;;36973:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36973:64:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40898:34:0;::::1;40890:93;;;;-1:-1:-1::0;;;40890:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40994:19;:42:::0;;-1:-1:-1;;;;;;40994:42:0::1;-1:-1:-1::0;;;;;40994:42:0;;;::::1;::::0;;;::::1;::::0;;40796:248::o;16368:127::-;-1:-1:-1;;;;;16469:18:0;16442:7;16469:18;;;;;;;;;;;;16368:127::o;33267:148::-;32847:12;:10;:12::i;:::-;-1:-1:-1;;;;;32836:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32836:23:0;;32828:68;;;;;-1:-1:-1;;;32828:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33358:6:::1;::::0;33337:40:::1;::::0;33374:1:::1;::::0;33358:6:::1;::::0;::::1;-1:-1:-1::0;;;;;33358:6:0::1;::::0;33337:40:::1;::::0;33374:1;;33337:40:::1;33388:6;:19:::0;;-1:-1:-1;;;;;;33388:19:0::1;::::0;;33267:148::o;36165:22::-;;;;:::o;42408:130::-;34340:9;;-1:-1:-1;;;;;34340:9:0;34353:10;34340:23;34332:72;;;;-1:-1:-1;;;34332:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42499:31:::1;42514:7;42523:6;42499:14;:31::i;:::-;42408:130:::0;;:::o;36443:28::-;;;-1:-1:-1;;;36443:28:0;;;;;:::o;32616:87::-;32689:6;;;;;-1:-1:-1;;;;;32689:6:0;;32616:87::o;41548:240::-;41630:4;37119:12;:10;:12::i;:::-;:39;;;-1:-1:-1;37135:9:0;;-1:-1:-1;;;;;37135:9:0;37148:10;37135:23;37119:39;37111:96;;;;-1:-1:-1;;;37111:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41655:27:0;::::1;;::::0;;;:17:::1;:27;::::0;;;;;::::1;;41647:65;;;::::0;;-1:-1:-1;;;41647:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;41723:27:0::1;41753:5;41723:27:::0;;;:17:::1;:27;::::0;;;;:35;;-1:-1:-1;;41723:35:0::1;::::0;;-1:-1:-1;;41548:240:0:o;15308:95::-;15388:7;15381:14;;;;;;;;-1:-1:-1;;15381:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15355:13;;15381:14;;15388:7;;15381:14;;15388:7;15381:14;;;;;;;;;;;;;;;;;;;;;;;;35907:41;;;-1:-1:-1;;;35907:41:0;;;;;:::o;39137:135::-;36981:9;;39217:4;;-1:-1:-1;;;;;36981:9:0;36994:10;36981:23;36973:64;;;;;-1:-1:-1;;;36973:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36973:64:0;;;;;;;;;;;;;;;39234:13:::1;:30:::0;;;;39137:135;:::o;19346:269::-;19439:4;19456:129;19465:12;:10;:12::i;:::-;19479:7;19488:96;19527:15;19488:96;;;;;;;;;;;;;;;;;:11;:25;19500:12;:10;:12::i;:::-;-1:-1:-1;;;;;19488:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19488:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;37873:115::-;37960:13;:20;37873:115;:::o;16708:175::-;16794:4;16811:42;16821:12;:10;:12::i;:::-;16835:9;16846:6;16811:9;:42::i;38805:324::-;36981:9;;38890:4;;-1:-1:-1;;;;;36981:9:0;36994:10;36981:23;36973:64;;;;;-1:-1:-1;;;36973:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36973:64:0;;;;;;;;;;;;;;;38988:23:::1;:21;:23::i;:::-;38979:6;:32;;;38971:87;;;;-1:-1:-1::0;;;38971:87:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39093:6;39069:13;39083:6;39069:21;;;;;;;;;36341:34:::0;;;-1:-1:-1;;;;;36341:34:0;;:::o;41052:240::-;36981:9;;-1:-1:-1;;;;;36981:9:0;36994:10;36981:23;36973:64;;;;;-1:-1:-1;;;36973:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36973:64:0;;;;;;;;;;;;;;;41131:16:::1;::::0;-1:-1:-1;;;41131:16:0;::::1;;;41130:17;41122:66;;;;-1:-1:-1::0;;;41122:66:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41218:5;41207:8;:16;41199:56;;;::::0;;-1:-1:-1;;;41199:56:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41266:7;:18:::0;41052:240::o;36804:49::-;;;;;;;;;;;;;;;:::o;16946:151::-;-1:-1:-1;;;;;17062:18:0;;;17035:7;17062:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16946:151::o;38119:125::-;-1:-1:-1;;;;;38209:27:0;38185:4;38209:27;;;:17;:27;;;;;;;;;38119:125::o;37996:115::-;38083:13;:20;37996:115;:::o;33570:244::-;32847:12;:10;:12::i;:::-;-1:-1:-1;;;;;32836:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;32836:23:0;;32828:68;;;;;-1:-1:-1;;;32828:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33659:22:0;::::1;33651:73;;;;-1:-1:-1::0;;;33651:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33761:6;::::0;33740:38:::1;::::0;-1:-1:-1;;;;;33740:38:0;;::::1;::::0;33761:6:::1;::::0;::::1;;::::0;33740:38:::1;::::0;;;::::1;33789:6;:17:::0;;-1:-1:-1;;;;;33789:17:0;;::::1;;;-1:-1:-1::0;;;;;;33789:17:0;;::::1;::::0;;;::::1;::::0;;33570:244::o;40108:97::-;36981:9;;-1:-1:-1;;;;;36981:9:0;36994:10;36981:23;36973:64;;;;;-1:-1:-1;;;36973:64:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;36973:64:0;;;;;;;;;;;;;;;40174:16:::1;:23:::0;;-1:-1:-1;;;;40174:23:0::1;-1:-1:-1::0;;;40174:23:0::1;::::0;;40108:97::o;35770:73::-;35832:11;35770:73;:::o;8257:179::-;8315:7;8347:5;;;8371:6;;;;8363:46;;;;;-1:-1:-1;;;8363:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8427:1;8257:179;-1:-1:-1;;;8257:179:0:o;2279:106::-;2367:10;2279:106;:::o;22493:346::-;-1:-1:-1;;;;;22595:19:0;;22587:68;;;;-1:-1:-1;;;22587:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22674:21:0;;22666:68;;;;-1:-1:-1;;;22666:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22747:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22799:32;;;;;;;;;;;;;;;;;22493:346;;;:::o;39280:301::-;39371:10;;39363:48;;;-1:-1:-1;;;39363:48:0;;39399:4;39363:48;;;;39406:4;39363:48;;;;;;39328:18;;-1:-1:-1;;;;;39371:10:0;;39363:27;;:48;;;;;;;;;;;;;;39371:10;39363:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39363:48:0;;;39359:215;;39508:54;;-1:-1:-1;;;39508:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39359:215;39459:15;;;-1:-1:-1;39452:22:0;;39589:511;39675:16;;39651:7;;-1:-1:-1;;;39675:16:0;;;;39671:422;;;39713:12;39728:37;39763:1;39734:23;:21;:23::i;:::-;39728:34;;;;:37::i;:::-;39713:52;;39708:374;39827:13;39841:6;39827:21;;;;;;;;;;;;;;;;;;39813:10;:35;39809:258;;39905:5;39881:13;39895:6;39881:21;;;;;;;;;;;;;;;;;;:29;39873:69;;;;;-1:-1:-1;;;39873:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;39975:13;39989:6;39975:21;;;;;;;;;;;;;;;;;;39965:7;:31;;;;40026:13;40040:6;40026:21;;;;;;;;;;;;;;;;;;40019:28;;;;;39809:258;-1:-1:-1;;39780:8:0;39708:374;;20105:539;-1:-1:-1;;;;;20211:20:0;;20203:70;;;;-1:-1:-1;;;20203:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20292:23:0;;20284:71;;;;-1:-1:-1;;;20284:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20368:47;20389:6;20397:9;20408:6;20368:20;:47::i;:::-;20448:71;20470:6;20448:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20448:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;20428:17:0;;;:9;:17;;;;;;;;;;;:91;;;;20553:20;;;;;;;:32;;20578:6;20553:24;:32::i;:::-;-1:-1:-1;;;;;20530:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;20601:35;;;;;;;20530:20;;20601:35;;;;;;;;;;;;;20105:539;;;:::o;43404:654::-;43556:4;43573:17;43593:30;43617:5;43593:19;43604:7;;43593:6;:10;;:19;;;;:::i;:::-;:23;;:30::i;:::-;43573:50;-1:-1:-1;43634:22:0;43659:21;:6;43573:50;43659:10;:21::i;:::-;43634:46;;43697:7;43693:226;;;43746:33;43761:6;43769:9;43746:14;:33::i;:::-;43693:226;;;43876:19;;43858:49;;43868:6;;-1:-1:-1;;;;;43876:19:0;43897:9;43858;:49::i;:::-;43982:44;43992:6;44000:9;44011:14;43982:9;:44::i;:::-;-1:-1:-1;44046:4:0;;43404:654;-1:-1:-1;;;;;;43404:654:0:o;11084:166::-;11170:7;11206:12;11198:6;;;;11190:29;;;;-1:-1:-1;;;11190:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11237:5:0;;;11084:166::o;34663:257::-;-1:-1:-1;;;;;34740:26:0;;34732:84;;;;-1:-1:-1;;;34732:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34832:45;;-1:-1:-1;;;;;34832:45:0;;;34860:1;;34832:45;;34860:1;;34832:45;34888:9;:24;;-1:-1:-1;;;;;;34888:24:0;-1:-1:-1;;;;;34888:24:0;;;;;;;;;;34663:257::o;20926:378::-;-1:-1:-1;;;;;21010:21:0;;21002:65;;;;;-1:-1:-1;;;21002:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21080:49;21109:1;21113:7;21122:6;21080:20;:49::i;:::-;21157:12;;:24;;21174:6;21157:16;:24::i;:::-;21142:12;:39;-1:-1:-1;;;;;21213:18:0;;:9;:18;;;;;;;;;;;:30;;21236:6;21213:22;:30::i;:::-;-1:-1:-1;;;;;21192:18:0;;:9;:18;;;;;;;;;;;:51;;;;21259:37;;;;;;;21192:18;;:9;;21259:37;;;;;;;;;;20926:378;;:::o;24500:91::-;24556:27;24562:12;:10;:12::i;:::-;24576:6;24556:5;:27::i;8719:158::-;8777:7;8810:1;8805;:6;;8797:49;;;;;-1:-1:-1;;;8797:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8864:5:0;;;8719:158::o;24910:295::-;24987:26;25016:84;25053:6;25016:84;;;;;;;;;;;;;;;;;:32;25026:7;25035:12;:10;:12::i;25016:84::-;24987:113;;25113:51;25122:7;25131:12;:10;:12::i;:::-;25145:18;25113:8;:51::i;:::-;25175:22;25181:7;25190:6;25175:5;:22::i;27450:130::-;27504:5;27529:43;27533:1;27536;27529:43;;;;;;;;;;;;;;;;;:3;:43::i;9136:220::-;9194:7;9218:6;9214:20;;-1:-1:-1;9233:1:0;9226:8;;9214:20;9257:5;;;9261:1;9257;:5;:1;9281:5;;;;;:10;9273:56;;;;-1:-1:-1;;;9273:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9834:153;9892:7;9924:1;9920;:5;9912:44;;;;;-1:-1:-1;;;9912:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;9978:1;9974;:5;;;;;;;9834:153;-1:-1:-1;;;9834:153:0:o;21637:418::-;-1:-1:-1;;;;;21721:21:0;;21713:67;;;;-1:-1:-1;;;21713:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21793:49;21814:7;21831:1;21835:6;21793:20;:49::i;:::-;21876:68;21899:6;21876:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21876:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;21855:18:0;;:9;:18;;;;;;;;;;:89;21970:12;;:24;;21987:6;21970:16;:24::i;:::-;21955:12;:39;22010:37;;;;;;;;22036:1;;-1:-1:-1;;;;;22010:37:0;;;;;;;;;;;;21637:418;;:::o;27883:184::-;27965:5;27996:1;27991:6;;:1;:6;;;;27999:12;27983:29;;;;;-1:-1:-1;;;27983:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://00e149eaf5c7ce264746b7f4d831aa3e0ff1ec8a10a2f7b7eacbfc2d9c8f81e3
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.