Polygon Sponsored slots available. Book your slot here!
ERC-20
Overview
Max Total Supply
1,562,276.820105126172809806 COCA
Holders
252
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
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:
Coca
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-01-09 */ 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); } contract Coca is ERC20Burnable, Operator { using SafeMath8 for uint8; using SafeMath for uint256; // Initial distribution for the first 24h genesis pools uint256 public constant INITIAL_GENESIS_POOL_DISTRIBUTION = 11000 ether; // Initial distribution for the day 2-5 SCARAB-WFTM LP -> SCARAB pool uint256 public constant INITIAL_TOMB_POOL_DISTRIBUTION = 140000 ether; // Distribution for airdrops wallet uint256 public constant INITIAL_AIRDROP_WALLET_DISTRIBUTION = 9000 ether; // Have the rewards been distributed to the pools bool public rewardPoolDistributed = false; /* ================= Taxation =============== */ // Address of the Oracle address public tombOracle; // 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 COCA ERC-20 contract. */ constructor(uint256 _taxRate, address _taxCollectorAddress) public ERC20("COCA", "COCA") { // Mints 1 SCARAB 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, 1 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 _getTombPrice() internal view returns (uint256 _tombPrice) { try IOracle(tombOracle).consult(address(this), 1e18) returns (uint144 _price) { return uint256(_price); } catch { revert("Coca: failed to fetch COCA price from Oracle"); } } function _updateTaxRate(uint256 _tombPrice) internal returns (uint256){ if (autoCalculateTax) { for (uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1); tierId >= 0; --tierId) { if (_tombPrice >= 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 setTombOracle(address _tombOracle) public onlyOperatorOrTaxOffice { require(_tombOracle != address(0), "oracle address cannot be 0 address"); tombOracle = _tombOracle; } 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 COCA to a recipient * @param recipient_ The address of recipient * @param amount_ The amount of COCA 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 currentTombPrice = _getTombPrice(); currentTaxRate = _updateTaxRate(currentTombPrice); if (currentTombPrice < 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 _tombPool, address _airdropWallet ) external onlyOperator { require(!rewardPoolDistributed, "only can distribute once"); require(_genesisPool != address(0), "!_genesisPool"); require(_tombPool != address(0), "!_tombPool"); require(_airdropWallet != address(0), "!_airdropWallet"); rewardPoolDistributed = true; _mint(_genesisPool, INITIAL_GENESIS_POOL_DISTRIBUTION); _mint(_tombPool, INITIAL_TOMB_POOL_DISTRIBUTION); _mint(_airdropWallet, INITIAL_AIRDROP_WALLET_DISTRIBUTION); } function governanceRecoverUnsupported( IERC20 _token, uint256 _amount, address _to ) external onlyOperator { _token.transfer(_to, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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_TOMB_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":"_tombPool","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":"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":"_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":[{"internalType":"address","name":"_tombOracle","type":"address"}],"name":"setTombOracle","outputs":[],"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":"tombOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"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
60806040526000600660146101000a81548160ff021916908315150217905550670f43fc2c04ee0000600a55604051806101c00160405280600067ffffffffffffffff1681526020016706f05b59d3b2000067ffffffffffffffff168152602001670853a0d2313c000067ffffffffffffffff1681526020016709b6e64a8ec6000067ffffffffffffffff168152602001670b1a2bc2ec50000067ffffffffffffffff168152602001670c7d713b49da000067ffffffffffffffff168152602001670d2f13f7789f000067ffffffffffffffff168152602001670de0b6b3a764000067ffffffffffffffff168152602001670e92596fd629000067ffffffffffffffff168152602001670f43fc2c04ee000067ffffffffffffffff1681526020016710a741a46278000067ffffffffffffffff16815260200167120a871cc002000067ffffffffffffffff16815260200167136dcc951d8c000067ffffffffffffffff1681526020016714d1120d7b16000067ffffffffffffffff16815250600c90600e6200019092919062000b17565b50604051806101c001604052806107d061ffff16815260200161076c61ffff16815260200161070861ffff1681526020016106a461ffff16815260200161064061ffff1681526020016105dc61ffff1681526020016105dc61ffff1681526020016105dc61ffff1681526020016105dc61ffff16815260200161057861ffff16815260200161038461ffff16815260200161019061ffff16815260200160c861ffff168152602001606461ffff16815250600d90600e6200025392919062000b75565b503480156200026157600080fd5b506040516200538938038062005389833981810160405260408110156200028757600080fd5b8101908080519060200190929190805190602001909291905050506040518060400160405280600481526020017f434f4341000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f434f43410000000000000000000000000000000000000000000000000000000081525081600390805190602001906200032692919062000bcd565b5080600490805190602001906200033f92919062000bcd565b506012600560006101000a81548160ff021916908360ff16021790555050506000620003706200065860201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200041f6200065860201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a3612710821062000554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620005dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806200532f602e913960400191505060405180910390fd5b620005ed306200066060201b60201c565b506200060833670de0b6b3a76400006200084460201b60201c565b8160098190555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000c73565b600033905090565b60006200067262000a2260201b60201c565b80620006cb57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b62000722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806200535d602c913960400191505060405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615620007e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e2774206265206578636c756465640000000000000081525060200191505060405180910390fd5b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620008fc6000838362000a8960201b60201c565b620009188160025462000a8e60201b6200325c1790919060201c565b60028190555062000976816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000a8e60201b6200325c1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1662000a6d6200065860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b505050565b60008082840190508381101562000b0d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b82805482825590600052602060002090810192821562000b62579160200282015b8281111562000b61578251829067ffffffffffffffff1690559160200191906001019062000b38565b5b50905062000b71919062000c54565b5090565b82805482825590600052602060002090810192821562000bba579160200282015b8281111562000bb9578251829061ffff1690559160200191906001019062000b96565b5b50905062000bc9919062000c54565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000c1057805160ff191683800117855562000c41565b8280016001018555821562000c41579182015b8281111562000c4057825182559160200191906001019062000c23565b5b50905062000c50919062000c54565b5090565b5b8082111562000c6f57600081600090555060010162000c55565b5090565b6146ac8062000c836000396000f3fe608060405234801561001057600080fd5b50600436106102bb5760003560e01c806370a0823111610182578063a6431bba116100e9578063dd62ed3e116100a2578063f2fde38b1161007c578063f2fde38b14610ec3578063f774110314610f07578063ff87fc7c14610f3b578063ffa8226e14610f45576102bb565b8063dd62ed3e14610dd3578063ebca1bd914610e4b578063ee2a953514610ea5576102bb565b8063a6431bba14610c44578063a9059cbb14610c62578063b87c5a4a14610cc6578063c3bdf61314610d17578063c6d69a3014610d4b578063cf011b2614610d79576102bb565b80638da5cb5b1161013b5780638da5cb5b14610a6b57806393995d4b14610a9f57806395d89b4114610af95780639662676c14610b7c5780639d6b5f2114610b9c578063a457c2d714610be0576102bb565b806370a0823114610939578063715018a61461099157806375be5ae11461099b578063771a3a1d146109df57806379cc6790146109fd5780638d3cc81814610a4b576102bb565b806342966c681161022657806354575af4116101df57806354575af4146107b6578063570ca735146108245780635c29908d1461085857806365bbacd91461089a57806366206ce9146108a457806369356d47146108f5576102bb565b806342966c681461066657806342c6b4f1146106945780634456eda2146106d65780634e20a02c146106f65780634f6d38d014610714578063521181d514610732576102bb565b8063313ce56711610278578063313ce567146104ab5780633758e6ce146104cc57806339509351146105265780633e5f13d41461058a5780633f07d76a146105be57806340c10f1914610602576102bb565b806306fdde03146102c0578063095ea7b3146103435780631017bc36146103a757806318160ddd146103c557806323b872dd146103e357806329605e7714610467575b600080fd5b6102c8610f63565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103085780820151818401526020810190506102ed565b50505050905090810190601f1680156103355780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61038f6004803603604081101561035957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611005565b60405180821515815260200191505060405180910390f35b6103af611023565b6040518082815260200191505060405180910390f35b6103cd611031565b6040518082815260200191505060405180910390f35b61044f600480360360608110156103f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061103b565b60405180821515815260200191505060405180910390f35b6104a96004803603602081101561047d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611157565b005b6104b3611212565b604051808260ff16815260200191505060405180910390f35b61050e600480360360208110156104e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611229565b60405180821515815260200191505060405180910390f35b6105726004803603604081101561053c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611401565b60405180821515815260200191505060405180910390f35b6105926114b4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610600600480360360208110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114da565b005b61064e6004803603604081101561061857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116e6565b60405180821515815260200191505060405180910390f35b6106926004803603602081101561067c57600080fd5b81019080803590602001909291905050506117bf565b005b6106c0600480360360208110156106aa57600080fd5b81019080803590602001909291905050506117cb565b6040518082815260200191505060405180910390f35b6106de6117ec565b60405180821515815260200191505060405180910390f35b6106fe61184b565b6040518082815260200191505060405180910390f35b61071c611859565b6040518082815260200191505060405180910390f35b6107b46004803603606081101561074857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061185f565b005b610822600480360360608110156107cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bcd565b005b61082c611d25565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108846004803603602081101561086e57600080fd5b8101908080359060200190929190505050611d4f565b6040518082815260200191505060405180910390f35b6108a2611d70565b005b6108dd600480360360408110156108ba57600080fd5b81019080803560ff16906020019092919080359060200190929190505050611e50565b60405180821515815260200191505060405180910390f35b6109376004803603602081101561090b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061209f565b005b61097b6004803603602081101561094f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061222c565b6040518082815260200191505060405180910390f35b610999612274565b005b6109dd600480360360208110156109b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123e4565b005b6109e7612563565b6040518082815260200191505060405180910390f35b610a4960048036036040811015610a1357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612569565b005b610a5361261d565b60405180821515815260200191505060405180910390f35b610a73612630565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ae160048036036020811015610ab557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061265a565b60405180821515815260200191505060405180910390f35b610b01612831565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b41578082015181840152602081019050610b26565b50505050905090810190601f168015610b6e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b846128d3565b60405180821515815260200191505060405180910390f35b610bc860048036036020811015610bb257600080fd5b81019080803590602001909291905050506128e6565b60405180821515815260200191505060405180910390f35b610c2c60048036036040811015610bf657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506129b7565b60405180821515815260200191505060405180910390f35b610c4c612a84565b6040518082815260200191505060405180910390f35b610cae60048036036040811015610c7857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a91565b60405180821515815260200191505060405180910390f35b610cff60048036036040811015610cdc57600080fd5b81019080803560ff16906020019092919080359060200190929190505050612aaf565b60405180821515815260200191505060405180910390f35b610d1f612c79565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610d7760048036036020811015610d6157600080fd5b8101908080359060200190929190505050612c9f565b005b610dbb60048036036020811015610d8f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e49565b60405180821515815260200191505060405180910390f35b610e3560048036036040811015610de957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e69565b6040518082815260200191505060405180910390f35b610e8d60048036036020811015610e6157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ef0565b60405180821515815260200191505060405180910390f35b610ead612f46565b6040518082815260200191505060405180910390f35b610f0560048036036020811015610ed957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f53565b005b610f0f613148565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610f4361316e565b005b610f4d61324e565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ffb5780601f10610fd057610100808354040283529160200191610ffb565b820191906000526020600020905b815481529060010190602001808311610fde57829003601f168201915b5050505050905090565b60006110196110126132e4565b84846132ec565b6001905092915050565b691da56a4b0835bf80000081565b6000600254905090565b600080600090506000600b60149054906101000a900460ff16156110815760006110636134e3565b905061106e81613622565b9250600a5481101561107f57600191505b505b60008214806110d95750600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110ee576110e9868686613771565b6110fc565b6110fa86868684613a32565b505b61114a866111086132e4565b611145876040518060600160405280602881526020016144ae602891396111368c6111316132e4565b612e69565b613ad39092919063ffffffff16565b6132ec565b6001925050509392505050565b61115f6132e4565b73ffffffffffffffffffffffffffffffffffffffff1661117d612630565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61120f81613b8d565b50565b6000600560009054906101000a900460ff16905090565b60006112336117ec565b8061128b57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614602602c913960400191505060405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e2774206265206578636c756465640000000000000081525060200191505060405180910390fd5b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b60006114aa61140e6132e4565b846114a5856001600061141f6132e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325c90919063ffffffff16565b6132ec565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114e26117ec565b8061153a57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614602602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061443a6026913960400191505060405180910390fd5b7f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a601600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a180600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60003373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461178e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806145286024913960400191505060405180910390fd5b60006117998461222c565b90506117a58484613cb2565b60006117b08561222c565b90508181119250505092915050565b6117c881613e79565b50565b600c81815481106117d857fe5b906000526020600020016000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661182f6132e4565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6902544faa778090e0000081565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806145286024913960400191505060405180910390fd5b600660149054906101000a900460ff1615611988576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6f6e6c792063616e2064697374726962757465206f6e6365000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f215f67656e65736973506f6f6c0000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ace576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f215f746f6d62506f6f6c0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f215f61697264726f7057616c6c6574000000000000000000000000000000000081525060200191505060405180910390fd5b6001600660146101000a81548160ff021916908315150217905550611ba0836902544faa778090e00000613cb2565b611bb482691da56a4b0835bf800000613cb2565b611bc8816901e7e4171bf4d3a00000613cb2565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806145286024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611ce457600080fd5b505af1158015611cf8573d6000803e3d6000fd5b505050506040513d6020811015611d0e57600080fd5b810190808051906020019092919050505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d8181548110611d5c57fe5b906000526020600020016000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b6000600b60146101000a81548160ff021916908315150217905550565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b60008360ff161015611f8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e6465782068617320746f20626520686967686572207468616e203000000081525060200191505060405180910390fd5b611f97612a84565b8360ff1610611ff1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061454c602a913960400191505060405180910390fd5b60008360ff16111561202757600c6001840360ff168154811061201057fe5b9060005260206000200154821161202657600080fd5b5b6120426001612034612a84565b613e8d90919063ffffffff16565b8360ff16101561207657600c6001840160ff168154811061205f57fe5b9060005260206000200154821061207557600080fd5b5b81600c8460ff168154811061208757fe5b90600052602060002001819055506001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806144d6602e913960400191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61227c6132e4565b73ffffffffffffffffffffffffffffffffffffffff1661229a612630565b73ffffffffffffffffffffffffffffffffffffffff1614612323576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6123ec6117ec565b8061244457503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614602602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561251f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145976022913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461260f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806145286024913960400191505060405180910390fd5b6126198282613f10565b5050565b600b60149054906101000a900460ff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006126646117ec565b806126bc57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614602602c913960400191505060405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e277420626520696e636c756465640000000000000081525060200191505060405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128c95780601f1061289e576101008083540402835291602001916128c9565b820191906000526020600020905b8154815290600101906020018083116128ac57829003601f168201915b5050505050905090565b600660149054906101000a900460ff1681565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b81600a81905550919050565b6000612a7a6129c46132e4565b84612a758560405180606001604052806025815260200161465260259139600160006129ee6132e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ad39092919063ffffffff16565b6132ec565b6001905092915050565b6000600c80549050905090565b6000612aa5612a9e6132e4565b8484613771565b6001905092915050565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b60008360ff161015612bee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e6465782068617320746f20626520686967686572207468616e203000000081525060200191505060405180910390fd5b612bf6612f46565b8360ff1610612c50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061454c602a913960400191505060405180910390fd5b81600d8460ff1681548110612c6157fe5b90600052602060002001819055506001905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600b60149054906101000a900460ff1615612dc8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806145b96024913960400191505060405180910390fd5b6127108110612e3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b8060098190555050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600d80549050905090565b612f5b6132e4565b73ffffffffffffffffffffffffffffffffffffffff16612f79612630565b73ffffffffffffffffffffffffffffffffffffffff1614613002576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613088576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806143cc6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b6001600b60146101000a81548160ff021916908315150217905550565b6901e7e4171bf4d3a0000081565b6000808284019050838110156132da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061462e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143f26022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633ddac95330670de0b6b3a76400006040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b15801561357e57600080fd5b505afa9250505080156135b257506040513d602081101561359e57600080fd5b810190808051906020019092919050505060015b613607576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061435b602c913960400191505060405180910390fd5b8071ffffffffffffffffffffffffffffffffffff1691505090565b6000600b60149054906101000a900460ff161561376b5760006136596001613648612a84565b60ff16613f7290919063ffffffff16565b90505b60008160ff161061376957600c8160ff168154811061367757fe5b9060005260206000200154831061375d57612710600d8260ff168154811061369b57fe5b906000526020600020015410613719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b600d8160ff168154811061372957fe5b9060005260206000200154600981905550600d8160ff168154811061374a57fe5b906000526020600020015491505061376c565b8060019003905061365c565b505b5b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806145dd6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561387d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806143876023913960400191505060405180910390fd5b613888838383613fbc565b6138f381604051806060016040528060268152602001614414602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ad39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613986816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600080613a5e612710613a5060095487613fc190919063ffffffff16565b61404790919063ffffffff16565b90506000613a758286613e8d90919063ffffffff16565b90508315613a8c57613a878783613f10565b613aba565b613ab987600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613771565b5b613ac5878783613771565b600192505050949350505050565b6000838311158290613b80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613b45578082015181840152602081019050613b2a565b50505050905090810190601f168015613b725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613c13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180614460602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613d6160008383613fbc565b613d768160025461325c90919063ffffffff16565b600281905550613dcd816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b613e8a613e846132e4565b826140d0565b50565b600082821115613f05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000613f4f8260405180606001604052806024815260200161450460249139613f4086613f3b6132e4565b612e69565b613ad39092919063ffffffff16565b9050613f6383613f5d6132e4565b836132ec565b613f6d83836140d0565b505050565b6000613fb483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614294565b905092915050565b505050565b600080831415613fd45760009050614041565b6000828402905082848281613fe557fe5b041461403c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061448d6021913960400191505060405180910390fd5b809150505b92915050565b60008082116140be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b8183816140c757fe5b04905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614156576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806145766021913960400191505060405180910390fd5b61416282600083613fbc565b6141cd816040518060600160405280602281526020016143aa602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ad39092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061422481600254613e8d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008360ff168360ff1611158290614347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561430c5780820151818401526020810190506142f1565b50505050905090810190601f1680156143395780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838503905080915050939250505056fe436f63613a206661696c656420746f20666574636820434f43412070726963652066726f6d204f7261636c6545524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fc471d5eb98386df80219257bd327b7fc72f4e607b87b954c4de8a903255a72364736f6c634300060c003374617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f66666963650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dc79abc09e8222acccc24c45a5d92e9dd98e2c8a
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102bb5760003560e01c806370a0823111610182578063a6431bba116100e9578063dd62ed3e116100a2578063f2fde38b1161007c578063f2fde38b14610ec3578063f774110314610f07578063ff87fc7c14610f3b578063ffa8226e14610f45576102bb565b8063dd62ed3e14610dd3578063ebca1bd914610e4b578063ee2a953514610ea5576102bb565b8063a6431bba14610c44578063a9059cbb14610c62578063b87c5a4a14610cc6578063c3bdf61314610d17578063c6d69a3014610d4b578063cf011b2614610d79576102bb565b80638da5cb5b1161013b5780638da5cb5b14610a6b57806393995d4b14610a9f57806395d89b4114610af95780639662676c14610b7c5780639d6b5f2114610b9c578063a457c2d714610be0576102bb565b806370a0823114610939578063715018a61461099157806375be5ae11461099b578063771a3a1d146109df57806379cc6790146109fd5780638d3cc81814610a4b576102bb565b806342966c681161022657806354575af4116101df57806354575af4146107b6578063570ca735146108245780635c29908d1461085857806365bbacd91461089a57806366206ce9146108a457806369356d47146108f5576102bb565b806342966c681461066657806342c6b4f1146106945780634456eda2146106d65780634e20a02c146106f65780634f6d38d014610714578063521181d514610732576102bb565b8063313ce56711610278578063313ce567146104ab5780633758e6ce146104cc57806339509351146105265780633e5f13d41461058a5780633f07d76a146105be57806340c10f1914610602576102bb565b806306fdde03146102c0578063095ea7b3146103435780631017bc36146103a757806318160ddd146103c557806323b872dd146103e357806329605e7714610467575b600080fd5b6102c8610f63565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156103085780820151818401526020810190506102ed565b50505050905090810190601f1680156103355780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61038f6004803603604081101561035957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611005565b60405180821515815260200191505060405180910390f35b6103af611023565b6040518082815260200191505060405180910390f35b6103cd611031565b6040518082815260200191505060405180910390f35b61044f600480360360608110156103f957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061103b565b60405180821515815260200191505060405180910390f35b6104a96004803603602081101561047d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611157565b005b6104b3611212565b604051808260ff16815260200191505060405180910390f35b61050e600480360360208110156104e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611229565b60405180821515815260200191505060405180910390f35b6105726004803603604081101561053c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611401565b60405180821515815260200191505060405180910390f35b6105926114b4565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610600600480360360208110156105d457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506114da565b005b61064e6004803603604081101561061857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116e6565b60405180821515815260200191505060405180910390f35b6106926004803603602081101561067c57600080fd5b81019080803590602001909291905050506117bf565b005b6106c0600480360360208110156106aa57600080fd5b81019080803590602001909291905050506117cb565b6040518082815260200191505060405180910390f35b6106de6117ec565b60405180821515815260200191505060405180910390f35b6106fe61184b565b6040518082815260200191505060405180910390f35b61071c611859565b6040518082815260200191505060405180910390f35b6107b46004803603606081101561074857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061185f565b005b610822600480360360608110156107cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bcd565b005b61082c611d25565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108846004803603602081101561086e57600080fd5b8101908080359060200190929190505050611d4f565b6040518082815260200191505060405180910390f35b6108a2611d70565b005b6108dd600480360360408110156108ba57600080fd5b81019080803560ff16906020019092919080359060200190929190505050611e50565b60405180821515815260200191505060405180910390f35b6109376004803603602081101561090b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061209f565b005b61097b6004803603602081101561094f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061222c565b6040518082815260200191505060405180910390f35b610999612274565b005b6109dd600480360360208110156109b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123e4565b005b6109e7612563565b6040518082815260200191505060405180910390f35b610a4960048036036040811015610a1357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612569565b005b610a5361261d565b60405180821515815260200191505060405180910390f35b610a73612630565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610ae160048036036020811015610ab557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061265a565b60405180821515815260200191505060405180910390f35b610b01612831565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b41578082015181840152602081019050610b26565b50505050905090810190601f168015610b6e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610b846128d3565b60405180821515815260200191505060405180910390f35b610bc860048036036020811015610bb257600080fd5b81019080803590602001909291905050506128e6565b60405180821515815260200191505060405180910390f35b610c2c60048036036040811015610bf657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506129b7565b60405180821515815260200191505060405180910390f35b610c4c612a84565b6040518082815260200191505060405180910390f35b610cae60048036036040811015610c7857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a91565b60405180821515815260200191505060405180910390f35b610cff60048036036040811015610cdc57600080fd5b81019080803560ff16906020019092919080359060200190929190505050612aaf565b60405180821515815260200191505060405180910390f35b610d1f612c79565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610d7760048036036020811015610d6157600080fd5b8101908080359060200190929190505050612c9f565b005b610dbb60048036036020811015610d8f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e49565b60405180821515815260200191505060405180910390f35b610e3560048036036040811015610de957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e69565b6040518082815260200191505060405180910390f35b610e8d60048036036020811015610e6157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612ef0565b60405180821515815260200191505060405180910390f35b610ead612f46565b6040518082815260200191505060405180910390f35b610f0560048036036020811015610ed957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f53565b005b610f0f613148565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610f4361316e565b005b610f4d61324e565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ffb5780601f10610fd057610100808354040283529160200191610ffb565b820191906000526020600020905b815481529060010190602001808311610fde57829003601f168201915b5050505050905090565b60006110196110126132e4565b84846132ec565b6001905092915050565b691da56a4b0835bf80000081565b6000600254905090565b600080600090506000600b60149054906101000a900460ff16156110815760006110636134e3565b905061106e81613622565b9250600a5481101561107f57600191505b505b60008214806110d95750600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156110ee576110e9868686613771565b6110fc565b6110fa86868684613a32565b505b61114a866111086132e4565b611145876040518060600160405280602881526020016144ae602891396111368c6111316132e4565b612e69565b613ad39092919063ffffffff16565b6132ec565b6001925050509392505050565b61115f6132e4565b73ffffffffffffffffffffffffffffffffffffffff1661117d612630565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61120f81613b8d565b50565b6000600560009054906101000a900460ff16905090565b60006112336117ec565b8061128b57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614602602c913960400191505060405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156113a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e2774206265206578636c756465640000000000000081525060200191505060405180910390fd5b6001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b60006114aa61140e6132e4565b846114a5856001600061141f6132e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325c90919063ffffffff16565b6132ec565b6001905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114e26117ec565b8061153a57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61158f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614602602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061443a6026913960400191505060405180910390fd5b7f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a601600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a180600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60003373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461178e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806145286024913960400191505060405180910390fd5b60006117998461222c565b90506117a58484613cb2565b60006117b08561222c565b90508181119250505092915050565b6117c881613e79565b50565b600c81815481106117d857fe5b906000526020600020016000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661182f6132e4565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6902544faa778090e0000081565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611905576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806145286024913960400191505060405180910390fd5b600660149054906101000a900460ff1615611988576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f6f6e6c792063616e2064697374726962757465206f6e6365000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f215f67656e65736973506f6f6c0000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ace576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600a8152602001807f215f746f6d62506f6f6c0000000000000000000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f215f61697264726f7057616c6c6574000000000000000000000000000000000081525060200191505060405180910390fd5b6001600660146101000a81548160ff021916908315150217905550611ba0836902544faa778090e00000613cb2565b611bb482691da56a4b0835bf800000613cb2565b611bc8816901e7e4171bf4d3a00000613cb2565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c73576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806145286024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611ce457600080fd5b505af1158015611cf8573d6000803e3d6000fd5b505050506040513d6020811015611d0e57600080fd5b810190808051906020019092919050505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d8181548110611d5c57fe5b906000526020600020016000915090505481565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b6000600b60146101000a81548160ff021916908315150217905550565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f15576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b60008360ff161015611f8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e6465782068617320746f20626520686967686572207468616e203000000081525060200191505060405180910390fd5b611f97612a84565b8360ff1610611ff1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061454c602a913960400191505060405180910390fd5b60008360ff16111561202757600c6001840360ff168154811061201057fe5b9060005260206000200154821161202657600080fd5b5b6120426001612034612a84565b613e8d90919063ffffffff16565b8360ff16101561207657600c6001840160ff168154811061205f57fe5b9060005260206000200154821061207557600080fd5b5b81600c8460ff168154811061208757fe5b90600052602060002001819055506001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612162576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001806144d6602e913960400191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61227c6132e4565b73ffffffffffffffffffffffffffffffffffffffff1661229a612630565b73ffffffffffffffffffffffffffffffffffffffff1614612323576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6123ec6117ec565b8061244457503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614602602c913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561251f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806145976022913960400191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461260f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806145286024913960400191505060405180910390fd5b6126198282613f10565b5050565b600b60149054906101000a900460ff1681565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006126646117ec565b806126bc57503373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614602602c913960400191505060405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f616464726573732063616e277420626520696e636c756465640000000000000081525060200191505060405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060019050919050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128c95780601f1061289e576101008083540402835291602001916128c9565b820191906000526020600020905b8154815290600101906020018083116128ac57829003601f168201915b5050505050905090565b600660149054906101000a900460ff1681565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b81600a81905550919050565b6000612a7a6129c46132e4565b84612a758560405180606001604052806025815260200161465260259139600160006129ee6132e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ad39092919063ffffffff16565b6132ec565b6001905092915050565b6000600c80549050905090565b6000612aa5612a9e6132e4565b8484613771565b6001905092915050565b60003373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b60008360ff161015612bee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f496e6465782068617320746f20626520686967686572207468616e203000000081525060200191505060405180910390fd5b612bf6612f46565b8360ff1610612c50576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061454c602a913960400191505060405180910390fd5b81600d8460ff1681548110612c6157fe5b90600052602060002001819055506001905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d62576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b600b60149054906101000a900460ff1615612dc8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806145b96024913960400191505060405180910390fd5b6127108110612e3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b8060098190555050565b600e6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600d80549050905090565b612f5b6132e4565b73ffffffffffffffffffffffffffffffffffffffff16612f79612630565b73ffffffffffffffffffffffffffffffffffffffff1614613002576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613088576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806143cc6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b3373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614613231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f43616c6c6572206973206e6f742074686520746178206f66666963650000000081525060200191505060405180910390fd5b6001600b60146101000a81548160ff021916908315150217905550565b6901e7e4171bf4d3a0000081565b6000808284019050838110156132da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061462e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806143f26022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633ddac95330670de0b6b3a76400006040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060206040518083038186803b15801561357e57600080fd5b505afa9250505080156135b257506040513d602081101561359e57600080fd5b810190808051906020019092919050505060015b613607576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018061435b602c913960400191505060405180910390fd5b8071ffffffffffffffffffffffffffffffffffff1691505090565b6000600b60149054906101000a900460ff161561376b5760006136596001613648612a84565b60ff16613f7290919063ffffffff16565b90505b60008160ff161061376957600c8160ff168154811061367757fe5b9060005260206000200154831061375d57612710600d8260ff168154811061369b57fe5b906000526020600020015410613719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f74617820657175616c206f722062696767657220746f2031303025000000000081525060200191505060405180910390fd5b600d8160ff168154811061372957fe5b9060005260206000200154600981905550600d8160ff168154811061374a57fe5b906000526020600020015491505061376c565b8060019003905061365c565b505b5b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806145dd6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561387d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806143876023913960400191505060405180910390fd5b613888838383613fbc565b6138f381604051806060016040528060268152602001614414602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ad39092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613986816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600080613a5e612710613a5060095487613fc190919063ffffffff16565b61404790919063ffffffff16565b90506000613a758286613e8d90919063ffffffff16565b90508315613a8c57613a878783613f10565b613aba565b613ab987600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684613771565b5b613ac5878783613771565b600192505050949350505050565b6000838311158290613b80576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613b45578082015181840152602081019050613b2a565b50505050905090810190601f168015613b725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613c13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d815260200180614460602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b613d6160008383613fbc565b613d768160025461325c90919063ffffffff16565b600281905550613dcd816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461325c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b613e8a613e846132e4565b826140d0565b50565b600082821115613f05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000613f4f8260405180606001604052806024815260200161450460249139613f4086613f3b6132e4565b612e69565b613ad39092919063ffffffff16565b9050613f6383613f5d6132e4565b836132ec565b613f6d83836140d0565b505050565b6000613fb483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614294565b905092915050565b505050565b600080831415613fd45760009050614041565b6000828402905082848281613fe557fe5b041461403c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061448d6021913960400191505060405180910390fd5b809150505b92915050565b60008082116140be576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b8183816140c757fe5b04905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614156576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806145766021913960400191505060405180910390fd5b61416282600083613fbc565b6141cd816040518060600160405280602281526020016143aa602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613ad39092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061422481600254613e8d90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008360ff168360ff1611158290614347576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561430c5780820151818401526020810190506142f1565b50505050905090810190601f1680156143395780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838503905080915050939250505056fe436f63613a206661696c656420746f20666574636820434f43412070726963652066726f6d204f7261636c6545524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f662074617820746965727345524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220fc471d5eb98386df80219257bd327b7fc72f4e607b87b954c4de8a903255a72364736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dc79abc09e8222acccc24c45a5d92e9dd98e2c8a
-----Decoded View---------------
Arg [0] : _taxRate (uint256): 0
Arg [1] : _taxCollectorAddress (address): 0xdc79ABC09E8222AcCCC24c45a5D92E9dD98e2c8a
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 000000000000000000000000dc79abc09e8222acccc24c45a5d92e9dd98e2c8a
Deployed Bytecode Sourcemap
33560:9647:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13397:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15543:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33889:69;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14496:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40772:852;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32839:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14340:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39526:240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16924:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34342:24;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38755:259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;40245:290;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;40543:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34733:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32731:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;33736:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34487:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42365:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43017:187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32503:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34874:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38439:99;;;:::i;:::-;;36479:545;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39022:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14667:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31566:148;;;:::i;:::-;;38546:201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34400:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40634:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34678:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30915:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39774:240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;13607:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34142:41;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37364:135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;17645:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36100:115;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15007:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37032:324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34576:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;39278:240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35039:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;15245:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36346:125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36223:115;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31869:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34276:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38334:97;;;:::i;:::-;;34006:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13397:91;13442:13;13475:5;13468:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13397:91;:::o;15543:169::-;15626:4;15643:39;15652:12;:10;:12::i;:::-;15666:7;15675:6;15643:8;:39::i;:::-;15700:4;15693:11;;15543:169;;;;:::o;33889:69::-;33946:12;33889:69;:::o;14496:108::-;14557:7;14584:12;;14577:19;;14496:108;:::o;40772:852::-;40904:4;40921:22;40946:1;40921:26;;40958:12;40995:16;;;;;;;;;;;40991:256;;;41028:24;41055:15;:13;:15::i;:::-;41028:42;;41102:32;41117:16;41102:14;:32::i;:::-;41085:49;;41172:13;;41153:16;:32;41149:87;;;41216:4;41206:14;;41149:87;40991:256;;41283:1;41265:14;:19;:48;;;;41288:17;:25;41306:6;41288:25;;;;;;;;;;;;;;;;;;;;;;;;;41265:48;41261:202;;;41330:36;41340:6;41348:9;41359:6;41330:9;:36::i;:::-;41261:202;;;41399:52;41416:6;41424:9;41435:6;41443:7;41399:16;:52::i;:::-;;41261:202;41475:119;41484:6;41492:12;:10;:12::i;:::-;41506:87;41542:6;41506:87;;;;;;;;;;;;;;;;;:31;41516:6;41524:12;:10;:12::i;:::-;41506:9;:31::i;:::-;:35;;:87;;;;;:::i;:::-;41475:8;:119::i;:::-;41612:4;41605:11;;;;40772:852;;;;;:::o;32839:115::-;31146:12;:10;:12::i;:::-;31135:23;;:7;:5;:7::i;:::-;:23;;;31127:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32915:31:::1;32933:12;32915:17;:31::i;:::-;32839:115:::0;:::o;14340:91::-;14389:5;14414:9;;;;;;;;;;;14407:16;;14340:91;:::o;39526:240::-;39608:4;35354:12;:10;:12::i;:::-;:39;;;;35383:10;35370:23;;:9;;;;;;;;;;;:23;;;35354:39;35346:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39634:17:::1;:27;39652:8;39634:27;;;;;;;;;;;;;;;;;;;;;;;;;39633:28;39625:66;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39732:4;39702:17;:27;39720:8;39702:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;39754:4;39747:11;;39526:240:::0;;;:::o;16924:218::-;17012:4;17029:83;17038:12;:10;:12::i;:::-;17052:7;17061:50;17100:10;17061:11;:25;17073:12;:10;:12::i;:::-;17061:25;;;;;;;;;;;;;;;:34;17087:7;17061:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;17029:8;:83::i;:::-;17130:4;17123:11;;16924:218;;;;:::o;34342:24::-;;;;;;;;;;;;;:::o;38755:259::-;35354:12;:10;:12::i;:::-;:39;;;;35383:10;35370:23;;:9;;;;;;;;;;;:23;;;35354:39;35346:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38869:1:::1;38847:24;;:10;:24;;;;38839:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38930:43;38951:9;;;;;;;;;;;38962:10;38930:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;38996:10;38984:9;;:22;;;;;;;;;;;;;;;;;;38755:259:::0;:::o;40245:290::-;40325:4;32652:10;32639:23;;:9;;;;;;;;;;;:23;;;32631:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40342:21:::1;40366;40376:10;40366:9;:21::i;:::-;40342:45;;40398:26;40404:10;40416:7;40398:5;:26::i;:::-;40435:20;40458:21;40468:10;40458:9;:21::i;:::-;40435:44;;40514:13;40499:12;:28;40492:35;;;;40245:290:::0;;;;:::o;40543:83::-;40600:18;40611:6;40600:10;:18::i;:::-;40543:83;:::o;34733:134::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32731:100::-;32774:4;32814:9;;;;;;;;;;;32798:25;;:12;:10;:12::i;:::-;:25;;;32791:32;;32731:100;:::o;33736:71::-;33796:11;33736:71;:::o;34487:38::-;;;;:::o;42365:644::-;32652:10;32639:23;;:9;;;;;;;;;;;:23;;;32631:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42532:21:::1;;;;;;;;;;;42531:22;42523:59;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;42625:1;42601:26;;:12;:26;;;;42593:52;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;42685:1;42664:23;;:9;:23;;;;42656:46;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;42747:1;42721:28;;:14;:28;;;;42713:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;42804:4;42780:21;;:28;;;;;;;;;;;;;;;;;;42819:54;42825:12;33796:11;42819:5;:54::i;:::-;42884:48;42890:9;33946:12;42884:5;:48::i;:::-;42943:58;42949:14;34068:10;42943:5;:58::i;:::-;42365:644:::0;;;:::o;43017:187::-;32652:10;32639:23;;:9;;;;;;;;;;;:23;;;32631:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43167:6:::1;:15;;;43183:3;43188:7;43167:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;43017:187:::0;;;:::o;32503:85::-;32544:7;32571:9;;;;;;;;;;;32564:16;;32503:85;:::o;34874:113::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38439:99::-;35229:10;35216:23;;:9;;;;;;;;;;;:23;;;35208:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38525:5:::1;38506:16;;:24;;;;;;;;;;;;;;;;;;38439:99::o:0;36479:545::-;36564:4;35229:10;35216:23;;:9;;;;;;;;;;;:23;;;35208:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36599:1:::1;36589:6;:11;;;;36581:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;36662:23;:21;:23::i;:::-;36653:6;:32;;;36645:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36756:1;36747:6;:10;;;36743:86;;;36791:13;36814:1;36805:6;:10;36791:25;;;;;;;;;;;;;;;;;;36782:6;:34;36774:43;;;::::0;::::1;;36743:86;36852:30;36880:1;36852:23;:21;:23::i;:::-;:27;;:30;;;;:::i;:::-;36843:6;:39;;;36839:115;;;36916:13;36939:1;36930:6;:10;36916:25;;;;;;;;;;;;;;;;;;36907:6;:34;36899:43;;;::::0;::::1;;36839:115;36988:6;36964:13;36978:6;36964:21;;;;;;;;;;;;;;;;;:30;;;;37012:4;37005:11;;36479:545:::0;;;;:::o;39022:248::-;35229:10;35216:23;;:9;;;;;;;;;;;:23;;;35208:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39156:1:::1;39124:34;;:20;:34;;;;39116:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39242:20;39220:19;;:42;;;;;;;;;;;;;;;;;;39022:248:::0;:::o;14667:127::-;14741:7;14768:9;:18;14778:7;14768:18;;;;;;;;;;;;;;;;14761:25;;14667:127;;;:::o;31566:148::-;31146:12;:10;:12::i;:::-;31135:23;;:7;:5;:7::i;:::-;:23;;;31127:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31673:1:::1;31636:40;;31657:6;;;;;;;;;;;31636:40;;;;;;;;;;;;31704:1;31687:6;;:19;;;;;;;;;;;;;;;;;;31566:148::o:0;38546:201::-;35354:12;:10;:12::i;:::-;:39;;;;35383:10;35370:23;;:9;;;;;;;;;;;:23;;;35354:39;35346:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38663:1:::1;38640:25;;:11;:25;;;;38632:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38728:11;38715:10;;:24;;;;;;;;;;;;;;;;;;38546:201:::0;:::o;34400:22::-;;;;:::o;40634:130::-;32652:10;32639:23;;:9;;;;;;;;;;;:23;;;32631:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40725:31:::1;40740:7;40749:6;40725:14;:31::i;:::-;40634:130:::0;;:::o;34678:28::-;;;;;;;;;;;;;:::o;30915:87::-;30961:7;30988:6;;;;;;;;;;;30981:13;;30915:87;:::o;39774:240::-;39856:4;35354:12;:10;:12::i;:::-;:39;;;;35383:10;35370:23;;:9;;;;;;;;;;;:23;;;35354:39;35346:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39881:17:::1;:27;39899:8;39881:27;;;;;;;;;;;;;;;;;;;;;;;;;39873:65;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39979:5;39949:17;:27;39967:8;39949:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;40002:4;39995:11;;39774:240:::0;;;:::o;13607:95::-;13654:13;13687:7;13680:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13607:95;:::o;34142:41::-;;;;;;;;;;;;;:::o;37364:135::-;37444:4;35229:10;35216:23;;:9;;;;;;;;;;;:23;;;35208:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37477:14:::1;37461:13;:30;;;;37364:135:::0;;;:::o;17645:269::-;17738:4;17755:129;17764:12;:10;:12::i;:::-;17778:7;17787:96;17826:15;17787:96;;;;;;;;;;;;;;;;;:11;:25;17799:12;:10;:12::i;:::-;17787:25;;;;;;;;;;;;;;;:34;17813:7;17787:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;17755:8;:129::i;:::-;17902:4;17895:11;;17645:269;;;;:::o;36100:115::-;36154:13;36187;:20;;;;36180:27;;36100:115;:::o;15007:175::-;15093:4;15110:42;15120:12;:10;:12::i;:::-;15134:9;15145:6;15110:9;:42::i;:::-;15170:4;15163:11;;15007:175;;;;:::o;37032:324::-;37117:4;35229:10;35216:23;;:9;;;;;;;;;;;:23;;;35208:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37152:1:::1;37142:6;:11;;;;37134:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;37215:23;:21;:23::i;:::-;37206:6;:32;;;37198:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37320:6;37296:13;37310:6;37296:21;;;;;;;;;;;;;;;;;:30;;;;37344:4;37337:11;;37032:324:::0;;;;:::o;34576:34::-;;;;;;;;;;;;;:::o;39278:240::-;35229:10;35216:23;;:9;;;;;;;;;;;:23;;;35208:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39357:16:::1;;;;;;;;;;;39356:17;39348:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39444:5;39433:8;:16;39425:56;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;39502:8;39492:7;:18;;;;39278:240:::0;:::o;35039:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;15245:151::-;15334:7;15361:11;:18;15373:5;15361:18;;;;;;;;;;;;;;;:27;15380:7;15361:27;;;;;;;;;;;;;;;;15354:34;;15245:151;;;;:::o;36346:125::-;36412:4;36436:17;:27;36454:8;36436:27;;;;;;;;;;;;;;;;;;;;;;;;;36429:34;;36346:125;;;:::o;36223:115::-;36277:13;36310;:20;;;;36303:27;;36223:115;:::o;31869:244::-;31146:12;:10;:12::i;:::-;31135:23;;:7;:5;:7::i;:::-;:23;;;31127:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31978:1:::1;31958:22;;:8;:22;;;;31950:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32068:8;32039:38;;32060:6;;;;;;;;;;;32039:38;;;;;;;;;;;;32097:8;32088:6;;:17;;;;;;;;;;;;;;;;;;31869:244:::0;:::o;34276:25::-;;;;;;;;;;;;;:::o;38334:97::-;35229:10;35216:23;;:9;;;;;;;;;;;:23;;;35208:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38419:4:::1;38400:16;;:23;;;;;;;;;;;;;;;;;;38334:97::o:0;34006:72::-;34068:10;34006:72;:::o;6556:179::-;6614:7;6634:9;6650:1;6646;:5;6634:17;;6675:1;6670;:6;;6662:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6726:1;6719:8;;;6556:179;;;;:::o;578:106::-;631:15;666:10;659:17;;578:106;:::o;20792:346::-;20911:1;20894:19;;:5;:19;;;;20886:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20992:1;20973:21;;:7;:21;;;;20965:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21076:6;21046:11;:18;21058:5;21046:18;;;;;;;;;;;;;;;:27;21065:7;21046:27;;;;;;;;;;;;;;;:36;;;;21114:7;21098:32;;21107:5;21098:32;;;21123:6;21098:32;;;;;;;;;;;;;;;;;;20792:346;;;:::o;37507:301::-;37555:18;37598:10;;;;;;;;;;;37590:27;;;37626:4;37633;37590:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37586:215;;37735:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37586:215;37694:6;37686:15;;37679:22;;;37507:301;:::o;37816:510::-;37878:7;37901:16;;;;;;;;;;;37897:422;;;37939:12;37954:37;37989:1;37960:23;:21;:23::i;:::-;37954:34;;;;:37;;;;:::i;:::-;37939:52;;37934:374;38003:1;37993:6;:11;;;37934:374;;38053:13;38067:6;38053:21;;;;;;;;;;;;;;;;;;38039:10;:35;38035:258;;38131:5;38107:13;38121:6;38107:21;;;;;;;;;;;;;;;;;;:29;38099:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38201:13;38215:6;38201:21;;;;;;;;;;;;;;;;;;38191:7;:31;;;;38252:13;38266:6;38252:21;;;;;;;;;;;;;;;;;;38245:28;;;;;38035:258;38006:8;;;;;;37934:374;;;;37897:422;37816:510;;;;:::o;18404:539::-;18528:1;18510:20;;:6;:20;;;;18502:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18612:1;18591:23;;:9;:23;;;;18583:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18667:47;18688:6;18696:9;18707:6;18667:20;:47::i;:::-;18747:71;18769:6;18747:71;;;;;;;;;;;;;;;;;:9;:17;18757:6;18747:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;18727:9;:17;18737:6;18727:17;;;;;;;;;;;;;;;:91;;;;18852:32;18877:6;18852:9;:20;18862:9;18852:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;18829:9;:20;18839:9;18829:20;;;;;;;;;;;;;;;:55;;;;18917:9;18900:35;;18909:6;18900:35;;;18928:6;18900:35;;;;;;;;;;;;;;;;;;18404:539;;;:::o;41632:653::-;41784:4;41801:17;41821:30;41845:5;41821:19;41832:7;;41821:6;:10;;:19;;;;:::i;:::-;:23;;:30;;;;:::i;:::-;41801:50;;41862:22;41887:21;41898:9;41887:6;:10;;:21;;;;:::i;:::-;41862:46;;41924:7;41921:225;;;41973:33;41988:6;41996:9;41973:14;:33::i;:::-;41921:225;;;42085:49;42095:6;42103:19;;;;;;;;;;;42124:9;42085;:49::i;:::-;41921:225;42209:44;42219:6;42227:9;42238:14;42209:9;:44::i;:::-;42273:4;42266:11;;;;41632:653;;;;;;:::o;9383:166::-;9469:7;9502:1;9497;:6;;9505:12;9489:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9540:1;9536;:5;9529:12;;9383:166;;;;;:::o;32962:257::-;33063:1;33039:26;;:12;:26;;;;33031:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33163:12;33131:45;;33159:1;33131:45;;;;;;;;;;;;33199:12;33187:9;;:24;;;;;;;;;;;;;;;;;;32962:257;:::o;19225:378::-;19328:1;19309:21;;:7;:21;;;;19301:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19379:49;19408:1;19412:7;19421:6;19379:20;:49::i;:::-;19456:24;19473:6;19456:12;;:16;;:24;;;;:::i;:::-;19441:12;:39;;;;19512:30;19535:6;19512:9;:18;19522:7;19512:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;19491:9;:18;19501:7;19491:18;;;;;;;;;;;;;;;:51;;;;19579:7;19558:37;;19575:1;19558:37;;;19588:6;19558:37;;;;;;;;;;;;;;;;;;19225:378;;:::o;22799:91::-;22855:27;22861:12;:10;:12::i;:::-;22875:6;22855:5;:27::i;:::-;22799:91;:::o;7018:158::-;7076:7;7109:1;7104;:6;;7096:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7167:1;7163;:5;7156:12;;7018:158;;;;:::o;23209:295::-;23286:26;23315:84;23352:6;23315:84;;;;;;;;;;;;;;;;;:32;23325:7;23334:12;:10;:12::i;:::-;23315:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;23286:113;;23412:51;23421:7;23430:12;:10;:12::i;:::-;23444:18;23412:8;:51::i;:::-;23474:22;23480:7;23489:6;23474:5;:22::i;:::-;23209:295;;;:::o;25749:130::-;25803:5;25828:43;25832:1;25835;25828:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;25821:50;;25749:130;;;;:::o;22171:92::-;;;;:::o;7435:220::-;7493:7;7522:1;7517;:6;7513:20;;;7532:1;7525:8;;;;7513:20;7544:9;7560:1;7556;:5;7544:17;;7589:1;7584;7580;:5;;;;;;:10;7572:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7646:1;7639:8;;;7435:220;;;;;:::o;8133:153::-;8191:7;8223:1;8219;:5;8211:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8277:1;8273;:5;;;;;;8266:12;;8133:153;;;;:::o;19936:418::-;20039:1;20020:21;;:7;:21;;;;20012:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20092:49;20113:7;20130:1;20134:6;20092:20;:49::i;:::-;20175:68;20198:6;20175:68;;;;;;;;;;;;;;;;;:9;:18;20185:7;20175:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;20154:9;:18;20164:7;20154:18;;;;;;;;;;;;;;;:89;;;;20269:24;20286:6;20269:12;;:16;;:24;;;;:::i;:::-;20254:12;:39;;;;20335:1;20309:37;;20318:7;20309:37;;;20339:6;20309:37;;;;;;;;;;;;;;;;;;19936:418;;:::o;26182:184::-;26264:5;26295:1;26290:6;;:1;:6;;;;26298:12;26282:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26322:7;26336:1;26332;:5;26322:15;;26357:1;26350:8;;;26182:184;;;;;:::o
Swarm Source
ipfs://fc471d5eb98386df80219257bd327b7fc72f4e607b87b954c4de8a903255a723
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.