ERC-20
Overview
Max Total Supply
1,000,000,000 CUBED
Holders
109
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
920,026.17064301704245304 CUBEDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Cubed
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-11 */ // hevm: flattened sources of src/cubed.sol // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) /* pragma solidity ^0.8.0; */ /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ 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) { unchecked { 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) { unchecked { 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) { unchecked { // 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) { unchecked { 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) { unchecked { 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) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return 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) { return a * b; } /** * @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. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { 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) { 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) { unchecked { 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. * * 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) { unchecked { 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) { unchecked { require(b > 0, errorMessage); return a % b; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } ////// cubed.sol /** DeFi Cubed Investing in DeFI 3.0 for Profits and Wealth */ /* pragma solidity 0.8.10; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {Address} from "lib/openzeppelin-contracts/contracts/utils/Address.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ contract Cubed is Ownable, IERC20 { address UNISWAPROUTER = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address DEAD = 0x000000000000000000000000000000000000dEaD; address ZERO = 0x0000000000000000000000000000000000000000; string private _name = "DeFi Cubed"; string private _symbol = "CUBED"; uint256 public treasuryFeeBPS = 1000; uint256 public liquidityFeeBPS = 100; uint256 public dividendFeeBPS = 300; uint256 public totalFeeBPS = 1400; uint256 public swapTokensAtAmount = 100000 * (10**18); uint256 public lastSwapTime; uint256 public launchedAt; bool swapAllToken = true; bool public swapEnabled = true; bool public taxEnabled = true; bool public compoundingEnabled = true; uint256 private _totalSupply; bool private swapping; address marketingWallet; address liquidityWallet; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public automatedMarketMakerPairs; mapping(address => bool) private _whiteList; mapping(address => bool) isBlacklisted; event SwapAndAddLiquidity( uint256 tokensSwapped, uint256 nativeReceived, uint256 tokensIntoLiquidity ); event SendDividends(uint256 tokensSwapped, uint256 amount); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event SwapEnabled(bool enabled); event TaxEnabled(bool enabled); event CompoundingEnabled(bool enabled); event BlacklistEnabled(bool enabled); DividendTracker public dividendTracker; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; uint256 public maxTxBPS = 50; uint256 public maxWalletBPS = 200; bool isOpen = false; mapping(address => bool) private _isExcludedFromMaxTx; mapping(address => bool) private _isExcludedFromMaxWallet; constructor( address _marketingWallet, address _liquidityWallet, address[] memory whitelistAddress ) { marketingWallet = _marketingWallet; liquidityWallet = _liquidityWallet; includeToWhiteList(whitelistAddress); dividendTracker = new DividendTracker(address(this), UNISWAPROUTER); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(UNISWAPROUTER); address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _setAutomatedMarketMakerPair(_uniswapV2Pair, true); dividendTracker.excludeFromDividends(address(dividendTracker), true); dividendTracker.excludeFromDividends(address(this), true); dividendTracker.excludeFromDividends(owner(), true); dividendTracker.excludeFromDividends(address(_uniswapV2Router), true); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(dividendTracker), true); excludeFromMaxTx(owner(), true); excludeFromMaxTx(address(this), true); excludeFromMaxTx(address(dividendTracker), true); excludeFromMaxWallet(owner(), true); excludeFromMaxWallet(address(this), true); excludeFromMaxWallet(address(dividendTracker), true); _mint(owner(), 1000000000 * (10**18)); } receive() external payable {} function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "CUBED: decreased allowance below zero" ); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "CUBED: transfer amount exceeds allowance" ); _approve(sender, _msgSender(), currentAllowance - amount); return true; } function openTrading() external onlyOwner { isOpen = true; launchedAt = block.number; } function _transfer( address sender, address recipient, uint256 amount ) internal { require( isOpen || sender == owner() || recipient == owner() || _whiteList[sender] || _whiteList[recipient], "Not Open" ); require(!isBlacklisted[sender], "CUBED: Sender is blacklisted"); require(!isBlacklisted[recipient], "CUBED: Recipient is blacklisted"); require(sender != address(0), "CUBED: transfer from the zero address"); require(recipient != address(0), "CUBED: transfer to the zero address"); uint256 _maxTxAmount = (totalSupply() * maxTxBPS) / 10000; uint256 _maxWallet = (totalSupply() * maxWalletBPS) / 10000; require( amount <= _maxTxAmount || _isExcludedFromMaxTx[sender], "TX Limit Exceeded" ); if ( sender != owner() && recipient != address(this) && recipient != address(DEAD) && recipient != uniswapV2Pair ) { uint256 currentBalance = balanceOf(recipient); require( _isExcludedFromMaxWallet[recipient] || (currentBalance + amount <= _maxWallet) ); } uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "CUBED: transfer amount exceeds balance" ); uint256 contractTokenBalance = balanceOf(address(this)); uint256 contractNativeBalance = address(this).balance; bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( swapEnabled && // True canSwap && // true !swapping && // swapping=false !false true !automatedMarketMakerPairs[sender] && // no swap on remove liquidity step 1 or DEX buy sender != address(uniswapV2Router) && // no swap on remove liquidity step 2 sender != owner() && recipient != owner() ) { swapping = true; if (!swapAllToken) { contractTokenBalance = swapTokensAtAmount; } _executeSwap(contractTokenBalance, contractNativeBalance); lastSwapTime = block.timestamp; swapping = false; } bool takeFee; if ( sender == address(uniswapV2Pair) || recipient == address(uniswapV2Pair) ) { takeFee = true; } if (_isExcludedFromFees[sender] || _isExcludedFromFees[recipient]) { takeFee = false; } if (swapping || !taxEnabled) { takeFee = false; } if (takeFee) { uint256 fees = (amount * totalFeeBPS) / 10000; amount -= fees; _executeTransfer(sender, address(this), fees); } _executeTransfer(sender, recipient, amount); dividendTracker.setBalance(payable(sender), balanceOf(sender)); dividendTracker.setBalance(payable(recipient), balanceOf(recipient)); if (block.number <= (launchedAt) && recipient != address(uniswapV2Router) && recipient != address(dividendTracker) && recipient != address(uniswapV2Pair)) { isBlacklisted[recipient] = true; } } function _executeTransfer( address sender, address recipient, uint256 amount ) private { require(sender != address(0), "CUBED: transfer from the zero address"); require(recipient != address(0), "CUBED: transfer to the zero address"); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "CUBED: transfer amount exceeds balance" ); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } function _approve( address owner, address spender, uint256 amount ) private { require(owner != address(0), "CUBED: approve from the zero address"); require(spender != address(0), "CUBED: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _mint(address account, uint256 amount) private { require(account != address(0), "CUBED: mint to the zero address"); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0x0d1234fB3670978cE165efb01855184C888bc660), account, amount); } function _burn(address account, uint256 amount) private { require(account != address(0), "CUBED: burn from the zero address"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "CUBED: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } function swapTokensForNative(uint256 tokens) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokens); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokens, 0, // accept any amount of native path, address(this), block.timestamp ); } function addLiquidity(uint256 tokens, uint256 native) private { _approve(address(this), address(uniswapV2Router), tokens); uniswapV2Router.addLiquidityETH{value: native}( address(this), tokens, 0, // slippage unavoidable 0, // slippage unavoidable liquidityWallet, block.timestamp ); } function includeToWhiteList(address[] memory _users) private { for (uint8 i = 0; i < _users.length; i++) { _whiteList[_users[i]] = true; } } function _executeSwap(uint256 tokens, uint256 native) private { if (tokens <= 0) { return; } uint256 swapTokensMarketing; if (address(marketingWallet) != address(0)) { swapTokensMarketing = (tokens * treasuryFeeBPS) / totalFeeBPS; } uint256 swapTokensDividends; if (dividendTracker.totalSupply() > 0) { swapTokensDividends = (tokens * dividendFeeBPS) / totalFeeBPS; } uint256 tokensForLiquidity = tokens - swapTokensMarketing - swapTokensDividends; uint256 swapTokensLiquidity = tokensForLiquidity / 2; uint256 addTokensLiquidity = tokensForLiquidity - swapTokensLiquidity; uint256 swapTokensTotal = swapTokensMarketing + swapTokensDividends + swapTokensLiquidity; uint256 initNativeBal = address(this).balance; swapTokensForNative(swapTokensTotal); uint256 nativeSwapped = (address(this).balance - initNativeBal) + native; uint256 nativeMarketing = (nativeSwapped * swapTokensMarketing) / swapTokensTotal; uint256 nativeDividends = (nativeSwapped * swapTokensDividends) / swapTokensTotal; uint256 nativeLiquidity = nativeSwapped - nativeMarketing - nativeDividends; if (nativeMarketing > 0) { payable(marketingWallet).transfer(nativeMarketing); } addLiquidity(addTokensLiquidity, nativeLiquidity); emit SwapAndAddLiquidity( swapTokensLiquidity, nativeLiquidity, addTokensLiquidity ); if (nativeDividends > 0) { (bool success, ) = address(dividendTracker).call{ value: nativeDividends }(""); if (success) { emit SendDividends(swapTokensDividends, nativeDividends); } } } function excludeFromFees(address account, bool excluded) public onlyOwner { require( _isExcludedFromFees[account] != excluded, "CUBED: account is already set to requested state" ); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function manualSendDividend(uint256 amount, address holder) external onlyOwner { dividendTracker.manualSendDividend(amount, holder); } function excludeFromDividends(address account, bool excluded) public onlyOwner { dividendTracker.excludeFromDividends(account, excluded); } function isExcludedFromDividends(address account) public view returns (bool) { return dividendTracker.isExcludedFromDividends(account); } function setWallet( address payable _marketingWallet, address payable _liquidityWallet ) external onlyOwner { marketingWallet = _marketingWallet; liquidityWallet = _liquidityWallet; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "CUBED: DEX pair can not be removed"); _setAutomatedMarketMakerPair(pair, value); } function setFee( uint256 _treasuryFee, uint256 _liquidityFee, uint256 _dividendFee ) external onlyOwner { treasuryFeeBPS = _treasuryFee; liquidityFeeBPS = _liquidityFee; dividendFeeBPS = _dividendFee; totalFeeBPS = _treasuryFee + _liquidityFee + _dividendFee; } function _setAutomatedMarketMakerPair(address pair, bool value) private { require( automatedMarketMakerPairs[pair] != value, "CUBED: automated market maker pair is already set to that value" ); automatedMarketMakerPairs[pair] = value; if (value) { dividendTracker.excludeFromDividends(pair, true); } emit SetAutomatedMarketMakerPair(pair, value); } function updateUniswapV2Router(address newAddress) public onlyOwner { require( newAddress != address(uniswapV2Router), "CUBED: the router is already set to the new address" ); emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router)); uniswapV2Router = IUniswapV2Router02(newAddress); address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()) .createPair(address(this), uniswapV2Router.WETH()); uniswapV2Pair = _uniswapV2Pair; } function claim() public { dividendTracker.processAccount(payable(_msgSender())); } function compound() public { require(compoundingEnabled, "CUBED: compounding is not enabled"); dividendTracker.compoundAccount(payable(_msgSender())); } function withdrawableDividendOf(address account) public view returns (uint256) { return dividendTracker.withdrawableDividendOf(account); } function withdrawnDividendOf(address account) public view returns (uint256) { return dividendTracker.withdrawnDividendOf(account); } function accumulativeDividendOf(address account) public view returns (uint256) { return dividendTracker.accumulativeDividendOf(account); } function getAccountInfo(address account) public view returns ( address, uint256, uint256, uint256, uint256 ) { return dividendTracker.getAccountInfo(account); } function getLastClaimTime(address account) public view returns (uint256) { return dividendTracker.getLastClaimTime(account); } function setSwapEnabled(bool _enabled) external onlyOwner { swapEnabled = _enabled; emit SwapEnabled(_enabled); } function setTaxEnabled(bool _enabled) external onlyOwner { taxEnabled = _enabled; emit TaxEnabled(_enabled); } function setCompoundingEnabled(bool _enabled) external onlyOwner { compoundingEnabled = _enabled; emit CompoundingEnabled(_enabled); } function updateDividendSettings( bool _swapEnabled, uint256 _swapTokensAtAmount, bool _swapAllToken ) external onlyOwner { swapEnabled = _swapEnabled; swapTokensAtAmount = _swapTokensAtAmount; swapAllToken = _swapAllToken; } function setMaxTxBPS(uint256 bps) external onlyOwner { require(bps >= 75 && bps <= 10000, "BPS must be between 75 and 10000"); maxTxBPS = bps; } function excludeFromMaxTx(address account, bool excluded) public onlyOwner { _isExcludedFromMaxTx[account] = excluded; } function isExcludedFromMaxTx(address account) public view returns (bool) { return _isExcludedFromMaxTx[account]; } function setMaxWalletBPS(uint256 bps) external onlyOwner { require( bps >= 175 && bps <= 10000, "BPS must be between 175 and 10000" ); maxWalletBPS = bps; } function excludeFromMaxWallet(address account, bool excluded) public onlyOwner { _isExcludedFromMaxWallet[account] = excluded; } function isExcludedFromMaxWallet(address account) public view returns (bool) { return _isExcludedFromMaxWallet[account]; } function rescueToken(address _token, uint256 _amount) external onlyOwner { IERC20(_token).transfer(msg.sender, _amount); } function rescueETH(uint256 _amount) external onlyOwner { payable(msg.sender).transfer(_amount); } function blackList(address _user) public onlyOwner { require(!isBlacklisted[_user], "user already blacklisted"); isBlacklisted[_user] = true; // events? } function removeFromBlacklist(address _user) public onlyOwner { require(isBlacklisted[_user], "user already whitelisted"); isBlacklisted[_user] = false; //events? } function blackListMany(address[] memory _users) public onlyOwner { for (uint8 i = 0; i < _users.length; i++) { isBlacklisted[_users[i]] = true; } } function unBlackListMany(address[] memory _users) public onlyOwner { for (uint8 i = 0; i < _users.length; i++) { isBlacklisted[_users[i]] = false; } } } contract DividendTracker is Ownable, IERC20 { address UNISWAPROUTER; string private _name = "CUBED_DividendTracker"; string private _symbol = "CUBED_DividendTracker"; uint256 public lastProcessedIndex; uint256 private _totalSupply; mapping(address => uint256) private _balances; uint256 private constant magnitude = 2**128; uint256 public immutable minTokenBalanceForDividends; uint256 private magnifiedDividendPerShare; uint256 public totalDividendsDistributed; uint256 public totalDividendsWithdrawn; address public tokenAddress; mapping(address => bool) public excludedFromDividends; mapping(address => int256) private magnifiedDividendCorrections; mapping(address => uint256) private withdrawnDividends; mapping(address => uint256) private lastClaimTimes; event DividendsDistributed(address indexed from, uint256 weiAmount); event DividendWithdrawn(address indexed to, uint256 weiAmount); event ExcludeFromDividends(address indexed account, bool excluded); event Claim(address indexed account, uint256 amount); event Compound(address indexed account, uint256 amount, uint256 tokens); struct AccountInfo { address account; uint256 withdrawableDividends; uint256 totalDividends; uint256 lastClaimTime; } constructor(address _tokenAddress, address _uniswapRouter) { minTokenBalanceForDividends = 10000 * (10**18); tokenAddress = _tokenAddress; UNISWAPROUTER = _uniswapRouter; } receive() external payable { distributeDividends(); } function distributeDividends() public payable { require(_totalSupply > 0); if (msg.value > 0) { magnifiedDividendPerShare = magnifiedDividendPerShare + ((msg.value * magnitude) / _totalSupply); emit DividendsDistributed(msg.sender, msg.value); totalDividendsDistributed += msg.value; } } function setBalance(address payable account, uint256 newBalance) external onlyOwner { if (excludedFromDividends[account]) { return; } if (newBalance >= minTokenBalanceForDividends) { _setBalance(account, newBalance); } else { _setBalance(account, 0); } } function excludeFromDividends(address account, bool excluded) external onlyOwner { require( excludedFromDividends[account] != excluded, "CUBED_DividendTracker: account already set to requested state" ); excludedFromDividends[account] = excluded; if (excluded) { _setBalance(account, 0); } else { uint256 newBalance = IERC20(tokenAddress).balanceOf(account); if (newBalance >= minTokenBalanceForDividends) { _setBalance(account, newBalance); } else { _setBalance(account, 0); } } emit ExcludeFromDividends(account, excluded); } function isExcludedFromDividends(address account) public view returns (bool) { return excludedFromDividends[account]; } function manualSendDividend(uint256 amount, address holder) external onlyOwner { uint256 contractETHBalance = address(this).balance; payable(holder).transfer(amount > 0 ? amount : contractETHBalance); } function _setBalance(address account, uint256 newBalance) internal { uint256 currentBalance = _balances[account]; if (newBalance > currentBalance) { uint256 addAmount = newBalance - currentBalance; _mint(account, addAmount); } else if (newBalance < currentBalance) { uint256 subAmount = currentBalance - newBalance; _burn(account, subAmount); } } function _mint(address account, uint256 amount) private { require( account != address(0), "CUBED_DividendTracker: mint to the zero address" ); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] - int256(magnifiedDividendPerShare * amount); } function _burn(address account, uint256 amount) private { require( account != address(0), "CUBED_DividendTracker: burn from the zero address" ); uint256 accountBalance = _balances[account]; require( accountBalance >= amount, "CUBED_DividendTracker: burn amount exceeds balance" ); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account] + int256(magnifiedDividendPerShare * amount); } function processAccount(address payable account) public onlyOwner returns (bool) { uint256 amount = _withdrawDividendOfUser(account); if (amount > 0) { lastClaimTimes[account] = block.timestamp; emit Claim(account, amount); return true; } return false; } function _withdrawDividendOfUser(address payable account) private returns (uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(account); if (_withdrawableDividend > 0) { withdrawnDividends[account] += _withdrawableDividend; totalDividendsWithdrawn += _withdrawableDividend; emit DividendWithdrawn(account, _withdrawableDividend); (bool success, ) = account.call{ value: _withdrawableDividend, gas: 3000 }(""); if (!success) { withdrawnDividends[account] -= _withdrawableDividend; totalDividendsWithdrawn -= _withdrawableDividend; return 0; } return _withdrawableDividend; } return 0; } function compoundAccount(address payable account) public onlyOwner returns (bool) { (uint256 amount, uint256 tokens) = _compoundDividendOfUser(account); if (amount > 0) { lastClaimTimes[account] = block.timestamp; emit Compound(account, amount, tokens); return true; } return false; } function _compoundDividendOfUser(address payable account) private returns (uint256, uint256) { uint256 _withdrawableDividend = withdrawableDividendOf(account); if (_withdrawableDividend > 0) { withdrawnDividends[account] += _withdrawableDividend; totalDividendsWithdrawn += _withdrawableDividend; emit DividendWithdrawn(account, _withdrawableDividend); IUniswapV2Router02 uniswapV2Router = IUniswapV2Router02( UNISWAPROUTER ); address[] memory path = new address[](2); path[0] = uniswapV2Router.WETH(); path[1] = address(tokenAddress); bool success; uint256 tokens; uint256 initTokenBal = IERC20(tokenAddress).balanceOf(account); try uniswapV2Router .swapExactETHForTokensSupportingFeeOnTransferTokens{ value: _withdrawableDividend }(0, path, address(account), block.timestamp) { success = true; tokens = IERC20(tokenAddress).balanceOf(account) - initTokenBal; } catch Error( string memory /*err*/ ) { success = false; } if (!success) { withdrawnDividends[account] -= _withdrawableDividend; totalDividendsWithdrawn -= _withdrawableDividend; return (0, 0); } return (_withdrawableDividend, tokens); } return (0, 0); } function withdrawableDividendOf(address account) public view returns (uint256) { return accumulativeDividendOf(account) - withdrawnDividends[account]; } function withdrawnDividendOf(address account) public view returns (uint256) { return withdrawnDividends[account]; } function accumulativeDividendOf(address account) public view returns (uint256) { int256 a = int256(magnifiedDividendPerShare * balanceOf(account)); int256 b = magnifiedDividendCorrections[account]; // this is an explicit int256 (signed) return uint256(a + b) / magnitude; } function getAccountInfo(address account) public view returns ( address, uint256, uint256, uint256, uint256 ) { AccountInfo memory info; info.account = account; info.withdrawableDividends = withdrawableDividendOf(account); info.totalDividends = accumulativeDividendOf(account); info.lastClaimTime = lastClaimTimes[account]; return ( info.account, info.withdrawableDividends, info.totalDividends, info.lastClaimTime, totalDividendsWithdrawn ); } function getLastClaimTime(address account) public view returns (uint256) { return lastClaimTimes[account]; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return 18; } function totalSupply() public view override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address, uint256) public pure override returns (bool) { revert("CUBED_DividendTracker: method not implemented"); } function allowance(address, address) public pure override returns (uint256) { revert("CUBED_DividendTracker: method not implemented"); } function approve(address, uint256) public pure override returns (bool) { revert("CUBED_DividendTracker: method not implemented"); } function transferFrom( address, address, uint256 ) public pure override returns (bool) { revert("CUBED_DividendTracker: method not implemented"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_liquidityWallet","type":"address"},{"internalType":"address[]","name":"whitelistAddress","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":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"BlacklistEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"CompoundingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nativeReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndAddLiquidity","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"TaxEnabled","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"accumulativeDividendOf","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":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","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":"address","name":"_user","type":"address"}],"name":"blackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"blackListMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compoundingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"dividendFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract DividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLastClaimTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"account","type":"address"}],"name":"isExcludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSwapTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"holder","type":"address"}],"name":"manualSendDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setCompoundingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_dividendFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"setMaxTxBPS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"setMaxWalletBPS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setTaxEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"},{"internalType":"address payable","name":"_liquidityWallet","type":"address"}],"name":"setWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryFeeBPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"unBlackListMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"},{"internalType":"uint256","name":"_swapTokensAtAmount","type":"uint256"},{"internalType":"bool","name":"_swapAllToken","type":"bool"}],"name":"updateDividendSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawnDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600180546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d1790915560028054821661dead17905560038054909116905560c0604052600a6080819052691119519a4810dd58995960b21b60a09081526200006b916004919062000b85565b506040805180820190915260058082526410d550915160da1b602090920191825262000098918162000b85565b506103e8600655606460075561012c60085561057860095569152d02c7e14af6800000600a55600d805463ffffffff191663010101011790556032601a5560c8601b55601c805460ff19169055348015620000f257600080fd5b50604051620080b0380380620080b0833981016040819052620001159162000c6c565b620001203362000628565b600f8054610100600160a81b0319166101006001600160a01b038681169190910291909117909155601080546001600160a01b0319169184169190911790556200016a8162000678565b60015460405130916001600160a01b031690620001879062000c14565b6001600160a01b03928316815291166020820152604001604051809103906000f080158015620001bb573d6000803e3d6000fd5b50601780546001600160a01b0319166001600160a01b039283161790556001546040805163c45a015560e01b815290519190921691600091839163c45a01559160048083019260209291908290030181865afa15801562000220573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000246919062000d66565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000294573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ba919062000d66565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000308573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032e919062000d66565b601880546001600160a01b038086166001600160a01b031992831617909255601980549284169290911691909117905590506200036d816001620006f1565b60175460405162241fbd60e51b81526001600160a01b03909116600482018190526001602483015290630483f7a090604401600060405180830381600087803b158015620003ba57600080fd5b505af1158015620003cf573d6000803e3d6000fd5b505060175460405162241fbd60e51b8152306004820152600160248201526001600160a01b039091169250630483f7a09150604401600060405180830381600087803b1580156200041f57600080fd5b505af115801562000434573d6000803e3d6000fd5b50506017546001600160a01b03169150630483f7a090506200045e6000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260016024820152604401600060405180830381600087803b158015620004a757600080fd5b505af1158015620004bc573d6000803e3d6000fd5b505060175460405162241fbd60e51b81526001600160a01b038681166004830152600160248301529091169250630483f7a09150604401600060405180830381600087803b1580156200050e57600080fd5b505af115801562000523573d6000803e3d6000fd5b50505050620005436200053b6200085e60201b60201c565b60016200086d565b620005503060016200086d565b60175462000569906001600160a01b031660016200086d565b62000588620005806000546001600160a01b031690565b6001620009a1565b62000595306001620009a1565b601754620005ae906001600160a01b03166001620009a1565b620005cd620005c56000546001600160a01b031690565b600162000a17565b620005da30600162000a17565b601754620005f3906001600160a01b0316600162000a17565b6200061d6200060a6000546001600160a01b031690565b6b033b2e3c9fd0803ce800000062000a8d565b505050505062000e32565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b81518160ff161015620006ed57600160156000848460ff1681518110620006a657620006a662000d8b565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580620006e48162000db7565b9150506200067b565b5050565b6001600160a01b03821660009081526014602052604090205460ff16151581151514156200078c5760405162461bcd60e51b815260206004820152603f60248201527f43554245443a206175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c75650060648201526084015b60405180910390fd5b6001600160a01b0382166000908152601460205260409020805460ff19168215801591909117909155620008225760175460405162241fbd60e51b81526001600160a01b0384811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b1580156200080857600080fd5b505af11580156200081d573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6000546001600160a01b031690565b6000546001600160a01b03163314620008b85760405162461bcd60e51b8152602060048201819052602482015260008051602062008090833981519152604482015260640162000783565b6001600160a01b03821660009081526013602052604090205460ff1615158115151415620009425760405162461bcd60e51b815260206004820152603060248201527f43554245443a206163636f756e7420697320616c72656164792073657420746f60448201526f2072657175657374656420737461746560801b606482015260840162000783565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6000546001600160a01b03163314620009ec5760405162461bcd60e51b8152602060048201819052602482015260008051602062008090833981519152604482015260640162000783565b6001600160a01b03919091166000908152601d60205260409020805460ff1916911515919091179055565b6000546001600160a01b0316331462000a625760405162461bcd60e51b8152602060048201819052602482015260008051602062008090833981519152604482015260640162000783565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6001600160a01b03821662000ae55760405162461bcd60e51b815260206004820152601f60248201527f43554245443a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000783565b80600e600082825462000af9919062000dda565b90915550506001600160a01b0382166000908152601160205260408120805483929062000b2890849062000dda565b90915550506040518181526001600160a01b03831690730d1234fb3670978ce165efb01855184c888bc660907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b82805462000b939062000df5565b90600052602060002090601f01602090048101928262000bb7576000855562000c02565b82601f1062000bd257805160ff191683800117855562000c02565b8280016001018555821562000c02579182015b8281111562000c0257825182559160200191906001019062000be5565b5062000c1092915062000c22565b5090565b6125ba8062005ad683390190565b5b8082111562000c10576000815560010162000c23565b80516001600160a01b038116811462000c5157600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121562000c8257600080fd5b62000c8d8462000c39565b9250602062000c9e81860162000c39565b60408601519093506001600160401b038082111562000cbc57600080fd5b818701915087601f83011262000cd157600080fd5b81518181111562000ce65762000ce662000c56565b8060051b604051601f19603f8301168101818110858211171562000d0e5762000d0e62000c56565b60405291825284820192508381018501918a83111562000d2d57600080fd5b938501935b8285101562000d565762000d468562000c39565b8452938501939285019262000d32565b8096505050505050509250925092565b60006020828403121562000d7957600080fd5b62000d848262000c39565b9392505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff81141562000dd15762000dd162000da1565b60010192915050565b6000821982111562000df05762000df062000da1565b500190565b600181811c9082168062000e0a57607f821691505b6020821081141562000e2c57634e487b7160e01b600052602260045260246000fd5b50919050565b614c948062000e426000396000f3fe6080604052600436106103bc5760003560e01c80637b510fe8116101f2578063c02466681161010d578063e01af92c116100a0578063f1b234ad1161006f578063f1b234ad14610c2c578063f2fde38b14610c4c578063f4571c4914610c6c578063f69e204614610c8c57600080fd5b8063e01af92c14610bc0578063e2f4560514610be0578063e4956ce214610bf6578063ebbf1ace14610c1657600080fd5b8063c9567bf9116100dc578063c9567bf914610b18578063d2fcc00114610b2d578063d4c989d314610b4d578063dd62ed3e14610b6d57600080fd5b8063c024666814610a98578063c3033aeb14610ab8578063c6af580b14610ad8578063c705c56914610af857600080fd5b8063a680e0bc11610185578063aafd847a11610154578063aafd847a14610a1c578063b62496f514610a3c578063b80b6e8914610a6c578063bf56b37114610a8257600080fd5b8063a680e0bc1461099c578063a8b9d240146109bc578063a9059cbb146109dc578063aa4e8c4a146109fc57600080fd5b806395d89b41116101c157806395d89b41146109275780639a7a23d61461093c5780639e252f001461095c578063a457c2d71461097c57600080fd5b80637b510fe81461085d578063870bd30b146108bc5780638da5cb5b146108dc5780638e1269441461090757600080fd5b806349bd5a5e116102e2578063658c27a9116102755780636ddd1713116102445780636ddd1713146107d057806370a08231146107ef578063715018a614610832578063744d15911461084757600080fd5b8063658c27a91461070457806365b8dbc01461074a57806368c51e351461076a5780636dd3d39f1461078a57600080fd5b806357777d31116102b157806357777d31146106985780635937ea6c146106ae5780635b65b9ab146106c45780635e843ad2146106e457600080fd5b806349bd5a5e146105f05780634e71d92d1461061d5780634fbee19314610632578063537df3b61461067857600080fd5b806327ce01471161035a57806333f3d6281161032957806333f3d6281461057a57806337eb15281461059a57806339509351146105b05780634838d165146105d057600080fd5b806327ce0147146104f05780632c1f5216146105105780632f4504ae1461053d578063313ce5671461055e57600080fd5b80630dd87157116103965780630dd87157146104455780631694505e1461046957806318160ddd146104bb57806323b872dd146104d057600080fd5b80630483f7a0146103c857806306fdde03146103ea578063095ea7b31461041557600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103e86103e336600461464a565b610ca1565b005b3480156103f657600080fd5b506103ff610db9565b60405161040c9190614683565b60405180910390f35b34801561042157600080fd5b506104356104303660046146f6565b610e4b565b604051901515815260200161040c565b34801561045157600080fd5b5061045b600b5481565b60405190815260200161040c565b34801561047557600080fd5b506018546104969073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161040c565b3480156104c757600080fd5b50600e5461045b565b3480156104dc57600080fd5b506104356104eb366004614722565b610e61565b3480156104fc57600080fd5b5061045b61050b366004614763565b610f4e565b34801561051c57600080fd5b506017546104969073ffffffffffffffffffffffffffffffffffffffff1681565b34801561054957600080fd5b50600d54610435906301000000900460ff1681565b34801561056a57600080fd5b506040516012815260200161040c565b34801561058657600080fd5b506103e86105953660046146f6565b610fea565b3480156105a657600080fd5b5061045b60095481565b3480156105bc57600080fd5b506104356105cb3660046146f6565b611107565b3480156105dc57600080fd5b506103e86105eb366004614763565b61114b565b3480156105fc57600080fd5b506019546104969073ffffffffffffffffffffffffffffffffffffffff1681565b34801561062957600080fd5b506103e86112ab565b34801561063e57600080fd5b5061043561064d366004614763565b73ffffffffffffffffffffffffffffffffffffffff1660009081526013602052604090205460ff1690565b34801561068457600080fd5b506103e8610693366004614763565b61135d565b3480156106a457600080fd5b5061045b601a5481565b3480156106ba57600080fd5b5061045b60065481565b3480156106d057600080fd5b506103e86106df366004614787565b6114b9565b3480156106f057600080fd5b506103e86106ff3660046147b3565b611566565b34801561071057600080fd5b5061043561071f366004614763565b73ffffffffffffffffffffffffffffffffffffffff166000908152601d602052604090205460ff1690565b34801561075657600080fd5b506103e8610765366004614763565b611650565b34801561077657600080fd5b506103e86107853660046147f5565b611a0e565b34801561079657600080fd5b506104356107a5366004614763565b73ffffffffffffffffffffffffffffffffffffffff166000908152601e602052604090205460ff1690565b3480156107dc57600080fd5b50600d5461043590610100900460ff1681565b3480156107fb57600080fd5b5061045b61080a366004614763565b73ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205490565b34801561083e57600080fd5b506103e8611b33565b34801561085357600080fd5b5061045b601b5481565b34801561086957600080fd5b5061087d610878366004614763565b611bc0565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a00161040c565b3480156108c857600080fd5b50600d546104359062010000900460ff1681565b3480156108e857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610496565b34801561091357600080fd5b506103e861092236600461480e565b611c70565b34801561093357600080fd5b506103ff611d50565b34801561094857600080fd5b506103e861095736600461464a565b611d5f565b34801561096857600080fd5b506103e86109773660046147f5565b611e99565b34801561098857600080fd5b506104356109973660046146f6565b611f47565b3480156109a857600080fd5b5061045b6109b7366004614763565b612021565b3480156109c857600080fd5b5061045b6109d7366004614763565b61207a565b3480156109e857600080fd5b506104356109f73660046146f6565b6120d3565b348015610a0857600080fd5b506103e8610a173660046147f5565b6120e0565b348015610a2857600080fd5b5061045b610a37366004614763565b6121df565b348015610a4857600080fd5b50610435610a57366004614763565b60146020526000908152604090205460ff1681565b348015610a7857600080fd5b5061045b60085481565b348015610a8e57600080fd5b5061045b600c5481565b348015610aa457600080fd5b506103e8610ab336600461464a565b612238565b348015610ac457600080fd5b506103e8610ad3366004614862565b6123ff565b348015610ae457600080fd5b506103e8610af3366004614945565b612519565b348015610b0457600080fd5b50610435610b13366004614763565b61260c565b348015610b2457600080fd5b506103e86126a1565b348015610b3957600080fd5b506103e8610b4836600461464a565b612753565b348015610b5957600080fd5b506103e8610b6836600461464a565b61282a565b348015610b7957600080fd5b5061045b610b88366004614962565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260126020908152604080832093909416825291909152205490565b348015610bcc57600080fd5b506103e8610bdb366004614945565b612901565b348015610bec57600080fd5b5061045b600a5481565b348015610c0257600080fd5b506103e8610c11366004614945565b6129e8565b348015610c2257600080fd5b5061045b60075481565b348015610c3857600080fd5b506103e8610c47366004614962565b612ad1565b348015610c5857600080fd5b506103e8610c67366004614763565b612bc6565b348015610c7857600080fd5b506103e8610c87366004614862565b612cf3565b348015610c9857600080fd5b506103e8612e0d565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6017546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610d9d57600080fd5b505af1158015610db1573d6000803e3d6000fd5b505050505050565b606060048054610dc890614990565b80601f0160208091040260200160405190810160405280929190818152602001828054610df490614990565b8015610e415780601f10610e1657610100808354040283529160200191610e41565b820191906000526020600020905b815481529060010190602001808311610e2457829003601f168201915b5050505050905090565b6000610e58338484612eca565b50600192915050565b6000610e6e84848461307d565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260126020908152604080832033845290915290205482811015610f2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f43554245443a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610d1e565b610f438533610f3e8685614a13565b612eca565b506001949350505050565b6017546040517f27ce014700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015260009216906327ce0147906024015b602060405180830381865afa158015610fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe49190614a2a565b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af11580156110de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111029190614a43565b505050565b33600081815260126020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610e58918590610f3e908690614a60565b60005473ffffffffffffffffffffffffffffffffffffffff1633146111cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff811660009081526016602052604090205460ff161561125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7573657220616c726561647920626c61636b6c697374656400000000000000006044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff16600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60175473ffffffffffffffffffffffffffffffffffffffff1663807ab4f7335b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024016020604051808303816000875af1158015611336573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135a9190614a43565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff811660009081526016602052604090205460ff1661146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7573657220616c72656164792077686974656c697374656400000000000000006044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff16600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b600683905560078290556008819055806115548385614a60565b61155e9190614a60565b600955505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146115e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b600d8054600a939093559015157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0093151561010002939093167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090921691909117919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146116d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b60185473ffffffffffffffffffffffffffffffffffffffff8281169116141561177c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f43554245443a2074686520726f7574657220697320616c72656164792073657460448201527f20746f20746865206e65772061646472657373000000000000000000000000006064820152608401610d1e565b60185460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000929163c45a01559160048083019260209291908290030181865afa15801561185e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118829190614a78565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561190b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192f9190614a78565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af11580156119a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c59190614a78565b601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790555050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611a8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b60af8110158015611aa257506127108111155b611b2e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f425053206d757374206265206265747765656e2031373520616e64203130303060448201527f30000000000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b601b55565b60005473ffffffffffffffffffffffffffffffffffffffff163314611bb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b611bbe6000613b6f565b565b6017546040517f7b510fe800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526000928392839283928392911690637b510fe89060240160a060405180830381865afa158015611c3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5e9190614a95565b939a9299509097509550909350915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cf1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b6017546040517f8e1269440000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff838116602483015290911690638e12694490604401610d83565b606060058054610dc890614990565b60005473ffffffffffffffffffffffffffffffffffffffff163314611de0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b60195473ffffffffffffffffffffffffffffffffffffffff83811691161415611e8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f43554245443a2044455820706169722063616e206e6f742062652072656d6f7660448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b611e958282613be4565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b604051339082156108fc029083906000818181858888f19350505050158015611e95573d6000803e3d6000fd5b33600090815260126020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015612008576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f43554245443a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610d1e565b6120173385610f3e8685614a13565b5060019392505050565b6017546040517fa680e0bc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a680e0bc90602401610fa3565b6017546040517fa8b9d24000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a8b9d24090602401610fa3565b6000610e5833848461307d565b60005473ffffffffffffffffffffffffffffffffffffffff163314612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b604b811015801561217457506127108111155b6121da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f425053206d757374206265206265747765656e20373520616e642031303030306044820152606401610d1e565b601a55565b6017546040517faafd847a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063aafd847a90602401610fa3565b60005473ffffffffffffffffffffffffffffffffffffffff1633146122b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff821660009081526013602052604090205460ff1615158115151415612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f43554245443a206163636f756e7420697320616c72656164792073657420746f60448201527f20726571756573746564207374617465000000000000000000000000000000006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff821660008181526013602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b60005b81518160ff161015611e9557600160166000848460ff16815181106124aa576124aa614ade565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061251181614b0d565b915050612483565b60005473ffffffffffffffffffffffffffffffffffffffff16331461259a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b600d805482151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091161790556040517f5bb2376cf656637e70e36c01d3da25685bf3b353f18681b8a5e48c7b2effe1339061260190831515815260200190565b60405180910390a150565b6017546040517fc705c56900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063c705c56990602401602060405180830381865afa15801561267d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe49190614a43565b60005473ffffffffffffffffffffffffffffffffffffffff163314612722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905543600c55565b60005473ffffffffffffffffffffffffffffffffffffffff1633146127d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146128ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b600d8054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c89061260190831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612a69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b600d80548215156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff9091161790556040517f341322866a3a2c26c27efa4c270c5ba86f6963257118897dd8196f224c002d439061260190831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612b52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b600f80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff1661010073ffffffffffffffffffffffffffffffffffffffff94851602179055601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001691909216179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612c47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff8116612cea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d1e565b61135a81613b6f565b60005473ffffffffffffffffffffffffffffffffffffffff163314612d74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b60005b81518160ff161015611e9557600060166000848460ff1681518110612d9e57612d9e614ade565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580612e0581614b0d565b915050612d77565b600d546301000000900460ff16612ea6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f43554245443a20636f6d706f756e64696e67206973206e6f7420656e61626c6560448201527f64000000000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b60175473ffffffffffffffffffffffffffffffffffffffff16636de1a5a9336112cb565b73ffffffffffffffffffffffffffffffffffffffff8316612f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43554245443a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff821661300f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f43554245443a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526012602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b601c5460ff16806130a8575060005473ffffffffffffffffffffffffffffffffffffffff8481169116145b806130cd575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b806130fd575073ffffffffffffffffffffffffffffffffffffffff831660009081526015602052604090205460ff165b8061312d575073ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604090205460ff165b613193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f4e6f74204f70656e0000000000000000000000000000000000000000000000006044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff831660009081526016602052604090205460ff1615613223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43554245443a2053656e64657220697320626c61636b6c6973746564000000006044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604090205460ff16156132b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f43554245443a20526563697069656e7420697320626c61636b6c6973746564006044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff8316613356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f43554245443a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff82166133f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43554245443a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b6000612710601a5461340a600e5490565b6134149190614b2d565b61341e9190614b6a565b90506000612710601b54613431600e5490565b61343b9190614b2d565b6134459190614b6a565b9050818311158061347b575073ffffffffffffffffffffffffffffffffffffffff85166000908152601d602052604090205460ff165b6134e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5458204c696d69742045786365656465640000000000000000000000000000006044820152606401610d1e565b60005473ffffffffffffffffffffffffffffffffffffffff868116911614801590613522575073ffffffffffffffffffffffffffffffffffffffff84163014155b8015613549575060025473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015613570575060195473ffffffffffffffffffffffffffffffffffffffff858116911614155b156135c95773ffffffffffffffffffffffffffffffffffffffff8416600090815260116020908152604080832054601e9092529091205460ff16806135be5750816135bb8583614a60565b11155b6135c757600080fd5b505b73ffffffffffffffffffffffffffffffffffffffff85166000908152601160205260409020548381101561367f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f43554245443a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610d1e565b30600090815260116020526040902054600a54600d54479183101590610100900460ff1680156136ac5750805b80156136bb5750600f5460ff16155b80156136ed575073ffffffffffffffffffffffffffffffffffffffff891660009081526014602052604090205460ff16155b8015613714575060185473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b801561373b575060005473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613762575060005473ffffffffffffffffffffffffffffffffffffffff898116911614155b156137d957600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600d5460ff166137a257600a5492505b6137ac8383613dce565b42600b55600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60195460009073ffffffffffffffffffffffffffffffffffffffff8b81169116148061381f575060195473ffffffffffffffffffffffffffffffffffffffff8a81169116145b15613828575060015b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526013602052604090205460ff1680613881575073ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff165b1561388a575060005b600f5460ff16806138a45750600d5462010000900460ff16155b156138ad575060005b80156138eb5760006127106009548a6138c69190614b2d565b6138d09190614b6a565b90506138dc818a614a13565b98506138e98b30836140e9565b505b6138f68a8a8a6140e9565b60175473ffffffffffffffffffffffffffffffffffffffff1663e30443bc8b6139418173ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b1580156139ac57600080fd5b505af11580156139c0573d6000803e3d6000fd5b505060175473ffffffffffffffffffffffffffffffffffffffff16915063e30443bc90508a613a118173ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b158015613a7c57600080fd5b505af1158015613a90573d6000803e3d6000fd5b50505050600c544311158015613ac1575060185473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613ae8575060175473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613b0f575060195473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b15613b635773ffffffffffffffffffffffffffffffffffffffff8916600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b50505050505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526014602052604090205460ff1615158115151415613ca0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f43554245443a206175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c7565006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260146020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215801591909117909155613d85576017546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b158015613d6c57600080fd5b505af1158015613d80573d6000803e3d6000fd5b505050505b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60008211613dda575050565b600f54600090610100900473ffffffffffffffffffffffffffffffffffffffff1615613e1d57600954600654613e109085614b2d565b613e1a9190614b6a565b90505b600080601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613eb19190614a2a565b1115613ed457600954600854613ec79086614b2d565b613ed19190614b6a565b90505b600081613ee18487614a13565b613eeb9190614a13565b90506000613efa600283614b6a565b90506000613f088284614a13565b9050600082613f178688614a60565b613f219190614a60565b905047613f2d826143a6565b600088613f3a8347614a13565b613f449190614a60565b9050600083613f538a84614b2d565b613f5d9190614b6a565b9050600084613f6c8a85614b2d565b613f769190614b6a565b9050600081613f858486614a13565b613f8f9190614a13565b90508215613fe457600f5460405161010090910473ffffffffffffffffffffffffffffffffffffffff16906108fc8515029085906000818181858888f19350505050158015613fe2573d6000803e3d6000fd5b505b613fee8782614523565b60408051898152602081018390529081018890527fb63dc6f50047533abe2d6adf180d38d524c8d98e55ad199aac8d6b9801bbe24a9060600160405180910390a181156140da5760175460405160009173ffffffffffffffffffffffffffffffffffffffff169084908381818185875af1925050503d806000811461408f576040519150601f19603f3d011682016040523d82523d6000602084013e614094565b606091505b5050905080156140d857604080518c8152602081018590527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3910160405180910390a15b505b50505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff831661418c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f43554245443a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff821661422f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43554245443a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260116020526040902054818110156142e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f43554245443a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610d1e565b6142ef8282614a13565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152601160205260408082209390935590851681529081208054849290614332908490614a60565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161439891815260200190565b60405180910390a350505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106143db576143db614ade565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601854604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561445a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061447e9190614a78565b8160018151811061449157614491614ade565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526018546144c49130911684612eca565b6018546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790610d83908590600090869030904290600401614ba5565b60185461454890309073ffffffffffffffffffffffffffffffffffffffff1684612eca565b6018546010546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101859052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff91821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af11580156145de573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146039190614c30565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461135a57600080fd5b80356146378161460a565b919050565b801515811461135a57600080fd5b6000806040838503121561465d57600080fd5b82356146688161460a565b915060208301356146788161463c565b809150509250929050565b600060208083528351808285015260005b818110156146b057858101830151858201604001528201614694565b818111156146c2576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000806040838503121561470957600080fd5b82356147148161460a565b946020939093013593505050565b60008060006060848603121561473757600080fd5b83356147428161460a565b925060208401356147528161460a565b929592945050506040919091013590565b60006020828403121561477557600080fd5b81356147808161460a565b9392505050565b60008060006060848603121561479c57600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156147c857600080fd5b83356147d38161463c565b92506020840135915060408401356147ea8161463c565b809150509250925092565b60006020828403121561480757600080fd5b5035919050565b6000806040838503121561482157600080fd5b8235915060208301356146788161460a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000602080838503121561487557600080fd5b823567ffffffffffffffff8082111561488d57600080fd5b818501915085601f8301126148a157600080fd5b8135818111156148b3576148b3614833565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811085821117156148f6576148f6614833565b60405291825284820192508381018501918883111561491457600080fd5b938501935b828510156149395761492a8561462c565b84529385019392850192614919565b98975050505050505050565b60006020828403121561495757600080fd5b81356147808161463c565b6000806040838503121561497557600080fd5b82356149808161460a565b915060208301356146788161460a565b600181811c908216806149a457607f821691505b602082108114156149de577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015614a2557614a256149e4565b500390565b600060208284031215614a3c57600080fd5b5051919050565b600060208284031215614a5557600080fd5b81516147808161463c565b60008219821115614a7357614a736149e4565b500190565b600060208284031215614a8a57600080fd5b81516147808161460a565b600080600080600060a08688031215614aad57600080fd5b8551614ab88161460a565b602087015160408801516060890151608090990151929a91995097965090945092505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060ff821660ff811415614b2457614b246149e4565b60010192915050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b6557614b656149e4565b500290565b600082614ba0577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015614c0257845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101614bd0565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600080600060608486031215614c4557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212205ff8534554b0caff291e7f6371f1d8c2fd89ae04d9c891c9e62ebd5240a7bf5764736f6c634300080a003360e0604052601560a08190527f43554245445f4469766964656e64547261636b6572000000000000000000000060c090815262000040916002919062000153565b506040805180820190915260158082527f43554245445f4469766964656e64547261636b657200000000000000000000006020909201918252620000879160039162000153565b503480156200009557600080fd5b50604051620025ba380380620025ba833981016040819052620000b89162000216565b620000c33362000103565b69021e19e0c9bab2400000608052600a80546001600160a01b039384166001600160a01b031991821617909155600180549290931691161790556200028b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000161906200024e565b90600052602060002090601f016020900481019282620001855760008555620001d0565b82601f10620001a057805160ff1916838001178555620001d0565b82800160010185558215620001d0579182015b82811115620001d0578251825591602001919060010190620001b3565b50620001de929150620001e2565b5090565b5b80821115620001de5760008155600101620001e3565b80516001600160a01b03811681146200021157600080fd5b919050565b600080604083850312156200022a57600080fd5b6200023583620001f9565b91506200024560208401620001f9565b90509250929050565b600181811c908216806200026357607f821691505b602082108114156200028557634e487b7160e01b600052602260045260246000fd5b50919050565b608051612305620002b5600039600081816105ad0152818161094f01526110da01526123056000f3fe6080604052600436106101d15760003560e01c806385a6b3ae116100f7578063a8b9d24011610095578063c705c56911610064578063c705c569146105cf578063dd62ed3e14610615578063e30443bc14610630578063f2fde38b1461065057600080fd5b8063a8b9d24014610538578063a9059cbb14610238578063aafd847a14610558578063c49af5f01461059b57600080fd5b806395d89b41116100d157806395d89b411461049d5780639d76ea58146104b25780639e1e0661146104df578063a680e0bc146104f557600080fd5b806385a6b3ae1461041b5780638da5cb5b146104315780638e1269441461047d57600080fd5b80633009a6091161016f57806370a082311161013e57806370a0823114610344578063715018a6146103875780637b510fe81461039c578063807ab4f7146103fb57600080fd5b80633009a609146102c2578063313ce567146102d85780634e7b827f146102f45780636de1a5a91461032457600080fd5b8063095ea7b3116101ab578063095ea7b31461023857806318160ddd1461026857806323b872dd1461028757806327ce0147146102a257600080fd5b806303c83302146101e55780630483f7a0146101ed57806306fdde031461020d57600080fd5b366101e0576101de610670565b005b600080fd5b6101de610670565b3480156101f957600080fd5b506101de610208366004611d09565b61070c565b34801561021957600080fd5b506102226109e6565b60405161022f9190611d47565b60405180910390f35b34801561024457600080fd5b50610258610253366004611dba565b610a78565b604051901515815260200161022f565b34801561027457600080fd5b506005545b60405190815260200161022f565b34801561029357600080fd5b50610258610253366004611de6565b3480156102ae57600080fd5b506102796102bd366004611e27565b610b03565b3480156102ce57600080fd5b5061027960045481565b3480156102e457600080fd5b506040516012815260200161022f565b34801561030057600080fd5b5061025861030f366004611e27565b600b6020526000908152604090205460ff1681565b34801561033057600080fd5b5061025861033f366004611e27565b610b8e565b34801561035057600080fd5b5061027961035f366004611e27565b73ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205490565b34801561039357600080fd5b506101de610c9d565b3480156103a857600080fd5b506103bc6103b7366004611e27565b610d28565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a00161022f565b34801561040757600080fd5b50610258610416366004611e27565b610df7565b34801561042757600080fd5b5061027960085481565b34801561043d57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161022f565b34801561048957600080fd5b506101de610498366004611e4b565b610f00565b3480156104a957600080fd5b50610222610fd7565b3480156104be57600080fd5b50600a546104589073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104eb57600080fd5b5061027960095481565b34801561050157600080fd5b50610279610510366004611e27565b73ffffffffffffffffffffffffffffffffffffffff166000908152600e602052604090205490565b34801561054457600080fd5b50610279610553366004611e27565b610fe6565b34801561056457600080fd5b50610279610573366004611e27565b73ffffffffffffffffffffffffffffffffffffffff166000908152600d602052604090205490565b3480156105a757600080fd5b506102797f000000000000000000000000000000000000000000000000000000000000000081565b3480156105db57600080fd5b506102586105ea366004611e27565b73ffffffffffffffffffffffffffffffffffffffff166000908152600b602052604090205460ff1690565b34801561062157600080fd5b50610279610253366004611e70565b34801561063c57600080fd5b506101de61064b366004611dba565b611025565b34801561065c57600080fd5b506101de61066b366004611e27565b611118565b60006005541161067f57600080fd5b341561070a576005546106a370010000000000000000000000000000000034611ecd565b6106ad9190611f0a565b6007546106ba9190611f45565b60075560405134815233907fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d784541165119060200160405180910390a234600860008282546107049190611f45565b90915550505b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610792576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff161515811515141561084e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603d60248201527f43554245445f4469766964656e64547261636b65723a206163636f756e74206160448201527f6c72656164792073657420746f207265717565737465642073746174650000006064820152608401610789565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682158015919091179091556108b6576108b1826000611248565b610990565b600a546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff848116600483015260009216906370a0823190602401602060405180830381865afa158015610927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094b9190611f5d565b90507f000000000000000000000000000000000000000000000000000000000000000081106109835761097e8382611248565b61098e565b61098e836000611248565b505b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be826040516109da911515815260200190565b60405180910390a25050565b6060600280546109f590611f76565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2190611f76565b8015610a6e5780601f10610a4357610100808354040283529160200191610a6e565b820191906000526020600020905b815481529060010190602001808311610a5157829003601f168201915b5050505050905090565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f43554245445f4469766964656e64547261636b65723a206d6574686f64206e6f60448201527f7420696d706c656d656e746564000000000000000000000000000000000000006064820152600090608401610789565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600660205260408120546007548291610b3791611ecd565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040902054909150700100000000000000000000000000000000610b7c8284611fca565b610b869190611f0a565b949350505050565b6000805473ffffffffffffffffffffffffffffffffffffffff163314610c10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b600080610c1c846112b3565b90925090508115610c935773ffffffffffffffffffffffffffffffffffffffff84166000818152600e602090815260409182902042905581518581529081018490527f0e311a2c6dbfb0153ec3a8a5bdca09070b3e5f60768fdc10a20453f38d186873910160405180910390a25060019392505050565b5060009392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b61070a60006116e5565b6000806000806000610d716040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160008152602001600081525090565b73ffffffffffffffffffffffffffffffffffffffff87168152610d9387610fe6565b6020820152610da187610b03565b604082810191825273ffffffffffffffffffffffffffffffffffffffff989098166000908152600e6020908152989020546060830181905282519890920151905160095498999198909750919550909350915050565b6000805473ffffffffffffffffffffffffffffffffffffffff163314610e79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b6000610e848361175a565b90508015610ef75773ffffffffffffffffffffffffffffffffffffffff83166000818152600e602052604090819020429055517f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d490610ee69084815260200190565b60405180910390a250600192915050565b50600092915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b4773ffffffffffffffffffffffffffffffffffffffff82166108fc84610fa75782610fa9565b845b6040518115909202916000818181858888f19350505050158015610fd1573d6000803e3d6000fd5b50505050565b6060600380546109f590611f76565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600d602052604081205461101583610b03565b61101f919061203e565b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600b602052604090205460ff16156110d8575050565b7f0000000000000000000000000000000000000000000000000000000000000000811061110d576111098282611248565b5050565b611109826000611248565b60005473ffffffffffffffffffffffffffffffffffffffff163314611199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610789565b73ffffffffffffffffffffffffffffffffffffffff811661123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610789565b611245816116e5565b50565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600660205260409020548082111561128e576000611282828461203e565b9050610fd184826118dd565b808210156112ae5760006112a2838361203e565b9050610fd18482611a8a565b505050565b60008060006112c184610fe6565b905080156116d95773ffffffffffffffffffffffffffffffffffffffff84166000908152600d6020526040812080548392906112fe908490611f45565b9250508190555080600960008282546113179190611f45565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8516907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a260015460408051600280825260608201835273ffffffffffffffffffffffffffffffffffffffff909316926000926020830190803683370190505090508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114139190612055565b8160008151811061142657611426612072565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600a5482519116908290600190811061146457611464612072565b73ffffffffffffffffffffffffffffffffffffffff9283166020918202929092010152600a546040517f70a082310000000000000000000000000000000000000000000000000000000081528883166004820152600092839283929116906370a0823190602401602060405180830381865afa1580156114e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150c9190611f5d565b90508473ffffffffffffffffffffffffffffffffffffffff1663b6f9de95876000878d426040518663ffffffff1660e01b815260040161154f94939291906120a1565b6000604051808303818588803b15801561156857600080fd5b505af19350505050801561157a575060015b6115bc57611586612125565b806308c379a014156115b0575061159b6121b3565b806115a657506115b2565b6000935050611661565b505b3d6000803e3d6000fd5b600a546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8b8116600483015260019550839216906370a0823190602401602060405180830381865afa158015611630573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116549190611f5d565b61165e919061203e565b91505b826116ca5773ffffffffffffffffffffffffffffffffffffffff89166000908152600d60205260408120805488929061169b90849061203e565b9250508190555085600960008282546116b4919061203e565b9091555060009a8b9a5098505050505050505050565b50939793965092945050505050565b50600093849350915050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008061176683610fe6565b90508015610ef75773ffffffffffffffffffffffffffffffffffffffff83166000908152600d6020526040812080548392906117a3908490611f45565b9250508190555080600960008282546117bc9190611f45565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8416907fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d9060200160405180910390a260008373ffffffffffffffffffffffffffffffffffffffff1682610bb890604051600060405180830381858888f193505050503d806000811461186b576040519150601f19603f3d011682016040523d82523d6000602084013e611870565b606091505b50509050806118d65773ffffffffffffffffffffffffffffffffffffffff84166000908152600d6020526040812080548492906118ae90849061203e565b9250508190555081600960008282546118c7919061203e565b90915550600095945050505050565b5092915050565b73ffffffffffffffffffffffffffffffffffffffff8216611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43554245445f4469766964656e64547261636b65723a206d696e7420746f207460448201527f6865207a65726f206164647265737300000000000000000000000000000000006064820152608401610789565b80600560008282546119929190611f45565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260066020526040812080548392906119cc908490611f45565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a380600754611a2d9190611ecd565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c6020526040902054611a5d919061225b565b73ffffffffffffffffffffffffffffffffffffffff9092166000908152600c602052604090209190915550565b73ffffffffffffffffffffffffffffffffffffffff8216611b2d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f43554245445f4469766964656e64547261636b65723a206275726e2066726f6d60448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610789565b73ffffffffffffffffffffffffffffffffffffffff821660009081526006602052604090205481811015611be3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f43554245445f4469766964656e64547261636b65723a206275726e20616d6f7560448201527f6e7420657863656564732062616c616e636500000000000000000000000000006064820152608401610789565b611bed828261203e565b73ffffffffffffffffffffffffffffffffffffffff841660009081526006602052604081209190915560058054849290611c2890849061203e565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a381600754611c899190611ecd565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600c6020526040902054611cb99190611fca565b73ffffffffffffffffffffffffffffffffffffffff9093166000908152600c60205260409020929092555050565b73ffffffffffffffffffffffffffffffffffffffff8116811461124557600080fd5b60008060408385031215611d1c57600080fd5b8235611d2781611ce7565b915060208301358015158114611d3c57600080fd5b809150509250929050565b600060208083528351808285015260005b81811015611d7457858101830151858201604001528201611d58565b81811115611d86576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008060408385031215611dcd57600080fd5b8235611dd881611ce7565b946020939093013593505050565b600080600060608486031215611dfb57600080fd5b8335611e0681611ce7565b92506020840135611e1681611ce7565b929592945050506040919091013590565b600060208284031215611e3957600080fd5b8135611e4481611ce7565b9392505050565b60008060408385031215611e5e57600080fd5b823591506020830135611d3c81611ce7565b60008060408385031215611e8357600080fd5b8235611e8e81611ce7565b91506020830135611d3c81611ce7565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f0557611f05611e9e565b500290565b600082611f40577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60008219821115611f5857611f58611e9e565b500190565b600060208284031215611f6f57600080fd5b5051919050565b600181811c90821680611f8a57607f821691505b60208210811415611fc4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000808212827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0384138115161561200457612004611e9e565b827f800000000000000000000000000000000000000000000000000000000000000003841281161561203857612038611e9e565b50500190565b60008282101561205057612050611e9e565b500390565b60006020828403121561206757600080fd5b8151611e4481611ce7565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060808201868352602060808185015281875180845260a086019150828901935060005b818110156120f857845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016120c6565b505073ffffffffffffffffffffffffffffffffffffffff9690961660408501525050506060015292915050565b600060033d111561213e5760046000803e5060005160e01c5b90565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff821117156121ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040525050565b600060443d10156121c15790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff816024840111818411171561220f57505050505090565b82850191508151818111156122275750505050505090565b843d87010160208285010111156122415750505050505090565b61225060208286010187612141565b509095945050505050565b6000808312837f80000000000000000000000000000000000000000000000000000000000000000183128115161561229557612295611e9e565b837f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0183138116156122c9576122c9611e9e565b5050039056fea2646970667358221220974e59f8e21b883b21d465f059d42843f04cbe6d65088837fce1b660e625e53764736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000b9dec51eb506e4e0f2fdad5d64e31ad997eac92b000000000000000000000000b9dec51eb506e4e0f2fdad5d64e31ad997eac92b00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000203111041016d048143d290529a08be358166d4f
Deployed Bytecode
0x6080604052600436106103bc5760003560e01c80637b510fe8116101f2578063c02466681161010d578063e01af92c116100a0578063f1b234ad1161006f578063f1b234ad14610c2c578063f2fde38b14610c4c578063f4571c4914610c6c578063f69e204614610c8c57600080fd5b8063e01af92c14610bc0578063e2f4560514610be0578063e4956ce214610bf6578063ebbf1ace14610c1657600080fd5b8063c9567bf9116100dc578063c9567bf914610b18578063d2fcc00114610b2d578063d4c989d314610b4d578063dd62ed3e14610b6d57600080fd5b8063c024666814610a98578063c3033aeb14610ab8578063c6af580b14610ad8578063c705c56914610af857600080fd5b8063a680e0bc11610185578063aafd847a11610154578063aafd847a14610a1c578063b62496f514610a3c578063b80b6e8914610a6c578063bf56b37114610a8257600080fd5b8063a680e0bc1461099c578063a8b9d240146109bc578063a9059cbb146109dc578063aa4e8c4a146109fc57600080fd5b806395d89b41116101c157806395d89b41146109275780639a7a23d61461093c5780639e252f001461095c578063a457c2d71461097c57600080fd5b80637b510fe81461085d578063870bd30b146108bc5780638da5cb5b146108dc5780638e1269441461090757600080fd5b806349bd5a5e116102e2578063658c27a9116102755780636ddd1713116102445780636ddd1713146107d057806370a08231146107ef578063715018a614610832578063744d15911461084757600080fd5b8063658c27a91461070457806365b8dbc01461074a57806368c51e351461076a5780636dd3d39f1461078a57600080fd5b806357777d31116102b157806357777d31146106985780635937ea6c146106ae5780635b65b9ab146106c45780635e843ad2146106e457600080fd5b806349bd5a5e146105f05780634e71d92d1461061d5780634fbee19314610632578063537df3b61461067857600080fd5b806327ce01471161035a57806333f3d6281161032957806333f3d6281461057a57806337eb15281461059a57806339509351146105b05780634838d165146105d057600080fd5b806327ce0147146104f05780632c1f5216146105105780632f4504ae1461053d578063313ce5671461055e57600080fd5b80630dd87157116103965780630dd87157146104455780631694505e1461046957806318160ddd146104bb57806323b872dd146104d057600080fd5b80630483f7a0146103c857806306fdde03146103ea578063095ea7b31461041557600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103e86103e336600461464a565b610ca1565b005b3480156103f657600080fd5b506103ff610db9565b60405161040c9190614683565b60405180910390f35b34801561042157600080fd5b506104356104303660046146f6565b610e4b565b604051901515815260200161040c565b34801561045157600080fd5b5061045b600b5481565b60405190815260200161040c565b34801561047557600080fd5b506018546104969073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161040c565b3480156104c757600080fd5b50600e5461045b565b3480156104dc57600080fd5b506104356104eb366004614722565b610e61565b3480156104fc57600080fd5b5061045b61050b366004614763565b610f4e565b34801561051c57600080fd5b506017546104969073ffffffffffffffffffffffffffffffffffffffff1681565b34801561054957600080fd5b50600d54610435906301000000900460ff1681565b34801561056a57600080fd5b506040516012815260200161040c565b34801561058657600080fd5b506103e86105953660046146f6565b610fea565b3480156105a657600080fd5b5061045b60095481565b3480156105bc57600080fd5b506104356105cb3660046146f6565b611107565b3480156105dc57600080fd5b506103e86105eb366004614763565b61114b565b3480156105fc57600080fd5b506019546104969073ffffffffffffffffffffffffffffffffffffffff1681565b34801561062957600080fd5b506103e86112ab565b34801561063e57600080fd5b5061043561064d366004614763565b73ffffffffffffffffffffffffffffffffffffffff1660009081526013602052604090205460ff1690565b34801561068457600080fd5b506103e8610693366004614763565b61135d565b3480156106a457600080fd5b5061045b601a5481565b3480156106ba57600080fd5b5061045b60065481565b3480156106d057600080fd5b506103e86106df366004614787565b6114b9565b3480156106f057600080fd5b506103e86106ff3660046147b3565b611566565b34801561071057600080fd5b5061043561071f366004614763565b73ffffffffffffffffffffffffffffffffffffffff166000908152601d602052604090205460ff1690565b34801561075657600080fd5b506103e8610765366004614763565b611650565b34801561077657600080fd5b506103e86107853660046147f5565b611a0e565b34801561079657600080fd5b506104356107a5366004614763565b73ffffffffffffffffffffffffffffffffffffffff166000908152601e602052604090205460ff1690565b3480156107dc57600080fd5b50600d5461043590610100900460ff1681565b3480156107fb57600080fd5b5061045b61080a366004614763565b73ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205490565b34801561083e57600080fd5b506103e8611b33565b34801561085357600080fd5b5061045b601b5481565b34801561086957600080fd5b5061087d610878366004614763565b611bc0565b6040805173ffffffffffffffffffffffffffffffffffffffff90961686526020860194909452928401919091526060830152608082015260a00161040c565b3480156108c857600080fd5b50600d546104359062010000900460ff1681565b3480156108e857600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff16610496565b34801561091357600080fd5b506103e861092236600461480e565b611c70565b34801561093357600080fd5b506103ff611d50565b34801561094857600080fd5b506103e861095736600461464a565b611d5f565b34801561096857600080fd5b506103e86109773660046147f5565b611e99565b34801561098857600080fd5b506104356109973660046146f6565b611f47565b3480156109a857600080fd5b5061045b6109b7366004614763565b612021565b3480156109c857600080fd5b5061045b6109d7366004614763565b61207a565b3480156109e857600080fd5b506104356109f73660046146f6565b6120d3565b348015610a0857600080fd5b506103e8610a173660046147f5565b6120e0565b348015610a2857600080fd5b5061045b610a37366004614763565b6121df565b348015610a4857600080fd5b50610435610a57366004614763565b60146020526000908152604090205460ff1681565b348015610a7857600080fd5b5061045b60085481565b348015610a8e57600080fd5b5061045b600c5481565b348015610aa457600080fd5b506103e8610ab336600461464a565b612238565b348015610ac457600080fd5b506103e8610ad3366004614862565b6123ff565b348015610ae457600080fd5b506103e8610af3366004614945565b612519565b348015610b0457600080fd5b50610435610b13366004614763565b61260c565b348015610b2457600080fd5b506103e86126a1565b348015610b3957600080fd5b506103e8610b4836600461464a565b612753565b348015610b5957600080fd5b506103e8610b6836600461464a565b61282a565b348015610b7957600080fd5b5061045b610b88366004614962565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260126020908152604080832093909416825291909152205490565b348015610bcc57600080fd5b506103e8610bdb366004614945565b612901565b348015610bec57600080fd5b5061045b600a5481565b348015610c0257600080fd5b506103e8610c11366004614945565b6129e8565b348015610c2257600080fd5b5061045b60075481565b348015610c3857600080fd5b506103e8610c47366004614962565b612ad1565b348015610c5857600080fd5b506103e8610c67366004614763565b612bc6565b348015610c7857600080fd5b506103e8610c87366004614862565b612cf3565b348015610c9857600080fd5b506103e8612e0d565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6017546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152831515602483015290911690630483f7a0906044015b600060405180830381600087803b158015610d9d57600080fd5b505af1158015610db1573d6000803e3d6000fd5b505050505050565b606060048054610dc890614990565b80601f0160208091040260200160405190810160405280929190818152602001828054610df490614990565b8015610e415780601f10610e1657610100808354040283529160200191610e41565b820191906000526020600020905b815481529060010190602001808311610e2457829003601f168201915b5050505050905090565b6000610e58338484612eca565b50600192915050565b6000610e6e84848461307d565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260126020908152604080832033845290915290205482811015610f2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f43554245443a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610d1e565b610f438533610f3e8685614a13565b612eca565b506001949350505050565b6017546040517f27ce014700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff838116600483015260009216906327ce0147906024015b602060405180830381865afa158015610fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe49190614a2a565b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905273ffffffffffffffffffffffffffffffffffffffff83169063a9059cbb906044016020604051808303816000875af11580156110de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111029190614a43565b505050565b33600081815260126020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610e58918590610f3e908690614a60565b60005473ffffffffffffffffffffffffffffffffffffffff1633146111cc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff811660009081526016602052604090205460ff161561125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7573657220616c726561647920626c61636b6c697374656400000000000000006044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff16600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60175473ffffffffffffffffffffffffffffffffffffffff1663807ab4f7335b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024016020604051808303816000875af1158015611336573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135a9190614a43565b50565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff811660009081526016602052604090205460ff1661146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f7573657220616c72656164792077686974656c697374656400000000000000006044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff16600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60005473ffffffffffffffffffffffffffffffffffffffff16331461153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b600683905560078290556008819055806115548385614a60565b61155e9190614a60565b600955505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146115e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b600d8054600a939093559015157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0093151561010002939093167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000090921691909117919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146116d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b60185473ffffffffffffffffffffffffffffffffffffffff8281169116141561177c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f43554245443a2074686520726f7574657220697320616c72656164792073657460448201527f20746f20746865206e65772061646472657373000000000000000000000000006064820152608401610d1e565b60185460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3601880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff8316908117909155604080517fc45a015500000000000000000000000000000000000000000000000000000000815290516000929163c45a01559160048083019260209291908290030181865afa15801561185e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118829190614a78565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561190b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061192f9190614a78565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af11580156119a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119c59190614a78565b601980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169190911790555050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611a8f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b60af8110158015611aa257506127108111155b611b2e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f425053206d757374206265206265747765656e2031373520616e64203130303060448201527f30000000000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b601b55565b60005473ffffffffffffffffffffffffffffffffffffffff163314611bb4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b611bbe6000613b6f565b565b6017546040517f7b510fe800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83811660048301526000928392839283928392911690637b510fe89060240160a060405180830381865afa158015611c3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5e9190614a95565b939a9299509097509550909350915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611cf1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b6017546040517f8e1269440000000000000000000000000000000000000000000000000000000081526004810184905273ffffffffffffffffffffffffffffffffffffffff838116602483015290911690638e12694490604401610d83565b606060058054610dc890614990565b60005473ffffffffffffffffffffffffffffffffffffffff163314611de0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b60195473ffffffffffffffffffffffffffffffffffffffff83811691161415611e8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f43554245443a2044455820706169722063616e206e6f742062652072656d6f7660448201527f65640000000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b611e958282613be4565b5050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611f1a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b604051339082156108fc029083906000818181858888f19350505050158015611e95573d6000803e3d6000fd5b33600090815260126020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015612008576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f43554245443a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610d1e565b6120173385610f3e8685614a13565b5060019392505050565b6017546040517fa680e0bc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a680e0bc90602401610fa3565b6017546040517fa8b9d24000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063a8b9d24090602401610fa3565b6000610e5833848461307d565b60005473ffffffffffffffffffffffffffffffffffffffff163314612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b604b811015801561217457506127108111155b6121da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f425053206d757374206265206265747765656e20373520616e642031303030306044820152606401610d1e565b601a55565b6017546040517faafd847a00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063aafd847a90602401610fa3565b60005473ffffffffffffffffffffffffffffffffffffffff1633146122b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff821660009081526013602052604090205460ff1615158115151415612375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f43554245443a206163636f756e7420697320616c72656164792073657420746f60448201527f20726571756573746564207374617465000000000000000000000000000000006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff821660008181526013602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60005473ffffffffffffffffffffffffffffffffffffffff163314612480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b60005b81518160ff161015611e9557600160166000848460ff16815181106124aa576124aa614ade565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169115159190911790558061251181614b0d565b915050612483565b60005473ffffffffffffffffffffffffffffffffffffffff16331461259a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b600d805482151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff9091161790556040517f5bb2376cf656637e70e36c01d3da25685bf3b353f18681b8a5e48c7b2effe1339061260190831515815260200190565b60405180910390a150565b6017546040517fc705c56900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8381166004830152600092169063c705c56990602401602060405180830381865afa15801561267d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe49190614a43565b60005473ffffffffffffffffffffffffffffffffffffffff163314612722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600117905543600c55565b60005473ffffffffffffffffffffffffffffffffffffffff1633146127d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601e6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff1633146128ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152601d6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b600d8054821515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff9091161790556040517fb9bbb15e341600c8d067a0cadeba219905d5ba6d422b193c9c32265d26fc51c89061260190831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612a69576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b600d80548215156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff9091161790556040517f341322866a3a2c26c27efa4c270c5ba86f6963257118897dd8196f224c002d439061260190831515815260200190565b60005473ffffffffffffffffffffffffffffffffffffffff163314612b52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b600f80547fffffffffffffffffffffff0000000000000000000000000000000000000000ff1661010073ffffffffffffffffffffffffffffffffffffffff94851602179055601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001691909216179055565b60005473ffffffffffffffffffffffffffffffffffffffff163314612c47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff8116612cea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d1e565b61135a81613b6f565b60005473ffffffffffffffffffffffffffffffffffffffff163314612d74576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d1e565b60005b81518160ff161015611e9557600060166000848460ff1681518110612d9e57612d9e614ade565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff16825281019190915260400160002080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001691151591909117905580612e0581614b0d565b915050612d77565b600d546301000000900460ff16612ea6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f43554245443a20636f6d706f756e64696e67206973206e6f7420656e61626c6560448201527f64000000000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b60175473ffffffffffffffffffffffffffffffffffffffff16636de1a5a9336112cb565b73ffffffffffffffffffffffffffffffffffffffff8316612f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43554245443a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff821661300f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f43554245443a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526012602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b601c5460ff16806130a8575060005473ffffffffffffffffffffffffffffffffffffffff8481169116145b806130cd575060005473ffffffffffffffffffffffffffffffffffffffff8381169116145b806130fd575073ffffffffffffffffffffffffffffffffffffffff831660009081526015602052604090205460ff165b8061312d575073ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604090205460ff165b613193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f4e6f74204f70656e0000000000000000000000000000000000000000000000006044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff831660009081526016602052604090205460ff1615613223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f43554245443a2053656e64657220697320626c61636b6c6973746564000000006044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604090205460ff16156132b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f43554245443a20526563697069656e7420697320626c61636b6c6973746564006044820152606401610d1e565b73ffffffffffffffffffffffffffffffffffffffff8316613356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f43554245443a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff82166133f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43554245443a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b6000612710601a5461340a600e5490565b6134149190614b2d565b61341e9190614b6a565b90506000612710601b54613431600e5490565b61343b9190614b2d565b6134459190614b6a565b9050818311158061347b575073ffffffffffffffffffffffffffffffffffffffff85166000908152601d602052604090205460ff165b6134e1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f5458204c696d69742045786365656465640000000000000000000000000000006044820152606401610d1e565b60005473ffffffffffffffffffffffffffffffffffffffff868116911614801590613522575073ffffffffffffffffffffffffffffffffffffffff84163014155b8015613549575060025473ffffffffffffffffffffffffffffffffffffffff858116911614155b8015613570575060195473ffffffffffffffffffffffffffffffffffffffff858116911614155b156135c95773ffffffffffffffffffffffffffffffffffffffff8416600090815260116020908152604080832054601e9092529091205460ff16806135be5750816135bb8583614a60565b11155b6135c757600080fd5b505b73ffffffffffffffffffffffffffffffffffffffff85166000908152601160205260409020548381101561367f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f43554245443a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610d1e565b30600090815260116020526040902054600a54600d54479183101590610100900460ff1680156136ac5750805b80156136bb5750600f5460ff16155b80156136ed575073ffffffffffffffffffffffffffffffffffffffff891660009081526014602052604090205460ff16155b8015613714575060185473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b801561373b575060005473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613762575060005473ffffffffffffffffffffffffffffffffffffffff898116911614155b156137d957600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055600d5460ff166137a257600a5492505b6137ac8383613dce565b42600b55600f80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690555b60195460009073ffffffffffffffffffffffffffffffffffffffff8b81169116148061381f575060195473ffffffffffffffffffffffffffffffffffffffff8a81169116145b15613828575060015b73ffffffffffffffffffffffffffffffffffffffff8a1660009081526013602052604090205460ff1680613881575073ffffffffffffffffffffffffffffffffffffffff891660009081526013602052604090205460ff165b1561388a575060005b600f5460ff16806138a45750600d5462010000900460ff16155b156138ad575060005b80156138eb5760006127106009548a6138c69190614b2d565b6138d09190614b6a565b90506138dc818a614a13565b98506138e98b30836140e9565b505b6138f68a8a8a6140e9565b60175473ffffffffffffffffffffffffffffffffffffffff1663e30443bc8b6139418173ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b1580156139ac57600080fd5b505af11580156139c0573d6000803e3d6000fd5b505060175473ffffffffffffffffffffffffffffffffffffffff16915063e30443bc90508a613a118173ffffffffffffffffffffffffffffffffffffffff1660009081526011602052604090205490565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff90921660048301526024820152604401600060405180830381600087803b158015613a7c57600080fd5b505af1158015613a90573d6000803e3d6000fd5b50505050600c544311158015613ac1575060185473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613ae8575060175473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b8015613b0f575060195473ffffffffffffffffffffffffffffffffffffffff8a8116911614155b15613b635773ffffffffffffffffffffffffffffffffffffffff8916600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b50505050505050505050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526014602052604090205460ff1615158115151415613ca0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603f60248201527f43554245443a206175746f6d61746564206d61726b6574206d616b657220706160448201527f697220697320616c72656164792073657420746f20746861742076616c7565006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260146020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168215801591909117909155613d85576017546040517f0483f7a000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84811660048301526001602483015290911690630483f7a090604401600060405180830381600087803b158015613d6c57600080fd5b505af1158015613d80573d6000803e3d6000fd5b505050505b6040518115159073ffffffffffffffffffffffffffffffffffffffff8416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b60008211613dda575050565b600f54600090610100900473ffffffffffffffffffffffffffffffffffffffff1615613e1d57600954600654613e109085614b2d565b613e1a9190614b6a565b90505b600080601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613e8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613eb19190614a2a565b1115613ed457600954600854613ec79086614b2d565b613ed19190614b6a565b90505b600081613ee18487614a13565b613eeb9190614a13565b90506000613efa600283614b6a565b90506000613f088284614a13565b9050600082613f178688614a60565b613f219190614a60565b905047613f2d826143a6565b600088613f3a8347614a13565b613f449190614a60565b9050600083613f538a84614b2d565b613f5d9190614b6a565b9050600084613f6c8a85614b2d565b613f769190614b6a565b9050600081613f858486614a13565b613f8f9190614a13565b90508215613fe457600f5460405161010090910473ffffffffffffffffffffffffffffffffffffffff16906108fc8515029085906000818181858888f19350505050158015613fe2573d6000803e3d6000fd5b505b613fee8782614523565b60408051898152602081018390529081018890527fb63dc6f50047533abe2d6adf180d38d524c8d98e55ad199aac8d6b9801bbe24a9060600160405180910390a181156140da5760175460405160009173ffffffffffffffffffffffffffffffffffffffff169084908381818185875af1925050503d806000811461408f576040519150601f19603f3d011682016040523d82523d6000602084013e614094565b606091505b5050905080156140d857604080518c8152602081018590527f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc3910160405180910390a15b505b50505050505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff831661418c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f43554245443a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff821661422f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f43554245443a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610d1e565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260116020526040902054818110156142e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f43554245443a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610d1e565b6142ef8282614a13565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152601160205260408082209390935590851681529081208054849290614332908490614a60565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161439891815260200190565b60405180910390a350505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106143db576143db614ade565b73ffffffffffffffffffffffffffffffffffffffff928316602091820292909201810191909152601854604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa15801561445a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061447e9190614a78565b8160018151811061449157614491614ade565b73ffffffffffffffffffffffffffffffffffffffff92831660209182029290920101526018546144c49130911684612eca565b6018546040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063791ac94790610d83908590600090869030904290600401614ba5565b60185461454890309073ffffffffffffffffffffffffffffffffffffffff1684612eca565b6018546010546040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101859052600060448201819052606482015273ffffffffffffffffffffffffffffffffffffffff91821660848201524260a482015291169063f305d71990839060c40160606040518083038185885af11580156145de573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906146039190614c30565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461135a57600080fd5b80356146378161460a565b919050565b801515811461135a57600080fd5b6000806040838503121561465d57600080fd5b82356146688161460a565b915060208301356146788161463c565b809150509250929050565b600060208083528351808285015260005b818110156146b057858101830151858201604001528201614694565b818111156146c2576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000806040838503121561470957600080fd5b82356147148161460a565b946020939093013593505050565b60008060006060848603121561473757600080fd5b83356147428161460a565b925060208401356147528161460a565b929592945050506040919091013590565b60006020828403121561477557600080fd5b81356147808161460a565b9392505050565b60008060006060848603121561479c57600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156147c857600080fd5b83356147d38161463c565b92506020840135915060408401356147ea8161463c565b809150509250925092565b60006020828403121561480757600080fd5b5035919050565b6000806040838503121561482157600080fd5b8235915060208301356146788161460a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000602080838503121561487557600080fd5b823567ffffffffffffffff8082111561488d57600080fd5b818501915085601f8301126148a157600080fd5b8135818111156148b3576148b3614833565b8060051b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f830116810181811085821117156148f6576148f6614833565b60405291825284820192508381018501918883111561491457600080fd5b938501935b828510156149395761492a8561462c565b84529385019392850192614919565b98975050505050505050565b60006020828403121561495757600080fd5b81356147808161463c565b6000806040838503121561497557600080fd5b82356149808161460a565b915060208301356146788161460a565b600181811c908216806149a457607f821691505b602082108114156149de577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015614a2557614a256149e4565b500390565b600060208284031215614a3c57600080fd5b5051919050565b600060208284031215614a5557600080fd5b81516147808161463c565b60008219821115614a7357614a736149e4565b500190565b600060208284031215614a8a57600080fd5b81516147808161460a565b600080600080600060a08688031215614aad57600080fd5b8551614ab88161460a565b602087015160408801516060890151608090990151929a91995097965090945092505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060ff821660ff811415614b2457614b246149e4565b60010192915050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b6557614b656149e4565b500290565b600082614ba0577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015614c0257845173ffffffffffffffffffffffffffffffffffffffff1683529383019391830191600101614bd0565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b600080600060608486031215614c4557600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212205ff8534554b0caff291e7f6371f1d8c2fd89ae04d9c891c9e62ebd5240a7bf5764736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b9DeC51eb506e4e0F2FDad5D64e31ad997EaC92B000000000000000000000000b9DeC51eb506e4e0F2FDad5D64e31ad997EaC92B00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000203111041016d048143d290529a08BE358166D4f
-----Decoded View---------------
Arg [0] : _marketingWallet (address): 0xb9DeC51eb506e4e0F2FDad5D64e31ad997EaC92B
Arg [1] : _liquidityWallet (address): 0xb9DeC51eb506e4e0F2FDad5D64e31ad997EaC92B
Arg [2] : whitelistAddress (address[]): 0x203111041016d048143d290529a08BE358166D4f
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000b9DeC51eb506e4e0F2FDad5D64e31ad997EaC92B
Arg [1] : 000000000000000000000000b9DeC51eb506e4e0F2FDad5D64e31ad997EaC92B
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000203111041016d048143d290529a08BE358166D4f
Deployed Bytecode Sourcemap
41105:21697:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56488:176;;;;;;;;;;-1:-1:-1;56488:176:0;;;;;:::i;:::-;;:::i;:::-;;44959:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45739:210;;;;;;;;;;-1:-1:-1;45739:210:0;;;;;:::i;:::-;;:::i;:::-;;;1968:14:1;;1961:22;1943:41;;1931:2;1916:18;45739:210:0;1803:187:1;41671:27:0;;;;;;;;;;;;;;;;;;;2141:25:1;;;2129:2;2114:18;41671:27:0;1995:177:1;43052:41:0;;;;;;;;;;-1:-1:-1;43052:41:0;;;;;;;;;;;2380:42:1;2368:55;;;2350:74;;2338:2;2323:18;43052:41:0;2177:253:1;45229:108:0;;;;;;;;;;-1:-1:-1;45317:12:0;;45229:108;;46904:489;;;;;;;;;;-1:-1:-1;46904:489:0;;;;;:::i;:::-;;:::i;59364:184::-;;;;;;;;;;-1:-1:-1;59364:184:0;;;;;:::i;:::-;;:::i;43007:38::-;;;;;;;;;;-1:-1:-1;43007:38:0;;;;;;;;41843:37;;;;;;;;;;-1:-1:-1;41843:37:0;;;;;;;;;;;45145:76;;;;;;;;;;-1:-1:-1;45145:76:0;;45211:2;3553:36:1;;3541:2;3526:18;45145:76:0;3411:184:1;61762:136:0;;;;;;;;;;-1:-1:-1;61762:136:0;;;;;:::i;:::-;;:::i;41569:33::-;;;;;;;;;;;;;;;;45957:280;;;;;;;;;;-1:-1:-1;45957:280:0;;;;;:::i;:::-;;:::i;62025:186::-;;;;;;;;;;-1:-1:-1;62025:186:0;;;;;:::i;:::-;;:::i;43102:28::-;;;;;;;;;;-1:-1:-1;43102:28:0;;;;;;;;58699:96;;;;;;;;;;;;;:::i;56175:126::-;;;;;;;;;;-1:-1:-1;56175:126:0;;;;;:::i;:::-;56265:28;;56241:4;56265:28;;;:19;:28;;;;;;;;;56175:126;62219:195;;;;;;;;;;-1:-1:-1;62219:195:0;;;;;:::i;:::-;;:::i;43139:28::-;;;;;;;;;;;;;;;;41441:36;;;;;;;;;;;;;;;;57350:334;;;;;;;;;;-1:-1:-1;57350:334:0;;;;;:::i;:::-;;:::i;60442:288::-;;;;;;;;;;-1:-1:-1;60442:288:0;;;;;:::i;:::-;;:::i;61055:128::-;;;;;;;;;;-1:-1:-1;61055:128:0;;;;;:::i;:::-;61146:29;;61122:4;61146:29;;;:20;:29;;;;;;;;;61055:128;58146:545;;;;;;;;;;-1:-1:-1;58146:545:0;;;;;:::i;:::-;;:::i;61191:214::-;;;;;;;;;;-1:-1:-1;61191:214:0;;;;;:::i;:::-;;:::i;61586:168::-;;;;;;;;;;-1:-1:-1;61586:168:0;;;;;:::i;:::-;61713:33;;61684:4;61713:33;;;:24;:33;;;;;;;;;61586:168;41770:30;;;;;;;;;;-1:-1:-1;41770:30:0;;;;;;;;;;;45345:177;;;;;;;;;;-1:-1:-1;45345:177:0;;;;;:::i;:::-;45496:18;;45464:7;45496:18;;;:9;:18;;;;;;;45345:177;2826:103;;;;;;;;;;;;;:::i;43174:33::-;;;;;;;;;;;;;;;;59556:280;;;;;;;;;;-1:-1:-1;59556:280:0;;;;;:::i;:::-;;:::i;:::-;;;;5075:42:1;5063:55;;;5045:74;;5150:2;5135:18;;5128:34;;;;5178:18;;;5171:34;;;;5236:2;5221:18;;5214:34;5279:3;5264:19;;5257:35;5032:3;5017:19;59556:280:0;4786:512:1;41807:29:0;;;;;;;;;;-1:-1:-1;41807:29:0;;;;;;;;;;;2175:87;;;;;;;;;;-1:-1:-1;2221:7:0;2248:6;;;2175:87;;56309:171;;;;;;;;;;-1:-1:-1;56309:171:0;;;;;:::i;:::-;;:::i;45050:87::-;;;;;;;;;;;;;:::i;57100:242::-;;;;;;;;;;-1:-1:-1;57100:242:0;;;;;:::i;:::-;;:::i;61906:111::-;;;;;;;;;;-1:-1:-1;61906:111:0;;;;;:::i;:::-;;:::i;46245:427::-;;;;;;;;;;-1:-1:-1;46245:427:0;;;;;:::i;:::-;;:::i;59844:140::-;;;;;;;;;;-1:-1:-1;59844:140:0;;;;;:::i;:::-;;:::i;58986:184::-;;;;;;;;;;-1:-1:-1;58986:184:0;;;;;:::i;:::-;;:::i;46680:216::-;;;;;;;;;;-1:-1:-1;46680:216:0;;;;;:::i;:::-;;:::i;60738:167::-;;;;;;;;;;-1:-1:-1;60738:167:0;;;;;:::i;:::-;;:::i;59178:178::-;;;;;;;;;;-1:-1:-1;59178:178:0;;;;;:::i;:::-;;:::i;42207:57::-;;;;;;;;;;-1:-1:-1;42207:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;41527:35;;;;;;;;;;;;;;;;41705:25;;;;;;;;;;;;;;;;55836:331;;;;;;;;;;-1:-1:-1;55836:331:0;;;;;:::i;:::-;;:::i;62422:183::-;;;;;;;;;;-1:-1:-1;62422:183:0;;;;;:::i;:::-;;:::i;60136:133::-;;;;;;;;;;-1:-1:-1;60136:133:0;;;;;:::i;:::-;;:::i;56672:183::-;;;;;;;;;;-1:-1:-1;56672:183:0;;;;;:::i;:::-;;:::i;47401:110::-;;;;;;;;;;;;;:::i;61413:165::-;;;;;;;;;;-1:-1:-1;61413:165:0;;;;;:::i;:::-;;:::i;60913:134::-;;;;;;;;;;-1:-1:-1;60913:134:0;;;;;:::i;:::-;;:::i;45530:201::-;;;;;;;;;;-1:-1:-1;45530:201:0;;;;;:::i;:::-;45696:18;;;;45664:7;45696:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;45530:201;59992:136;;;;;;;;;;-1:-1:-1;59992:136:0;;;;;:::i;:::-;;:::i;41611:53::-;;;;;;;;;;;;;;;;60277:157;;;;;;;;;;-1:-1:-1;60277:157:0;;;;;:::i;:::-;;:::i;41484:36::-;;;;;;;;;;;;;;;;56863:229;;;;;;;;;;-1:-1:-1;56863:229:0;;;;;:::i;:::-;;:::i;3084:201::-;;;;;;;;;;-1:-1:-1;3084:201:0;;;;;:::i;:::-;;:::i;62613:186::-;;;;;;;;;;-1:-1:-1;62613:186:0;;;;;:::i;:::-;;:::i;58803:175::-;;;;;;;;;;;;;:::i;56488:176::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;;;;;;;;;56601:15:::1;::::0;:55:::1;::::0;;;;:15:::1;8592:55:1::0;;;56601::0::1;::::0;::::1;8574:74:1::0;8691:14;;8684:22;8664:18;;;8657:50;56601:15:0;;::::1;::::0;:36:::1;::::0;8547:18:1;;56601:55:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;56488:176:::0;;:::o;44959:83::-;44996:13;45029:5;45022:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44959:83;:::o;45739:210::-;45858:4;45880:39;928:10;45903:7;45912:6;45880:8;:39::i;:::-;-1:-1:-1;45937:4:0;45739:210;;;;:::o;46904:489::-;47044:4;47061:36;47071:6;47079:9;47090:6;47061:9;:36::i;:::-;47135:19;;;47108:24;47135:19;;;:11;:19;;;;;;;;928:10;47135:33;;;;;;;;47201:26;;;;47179:116;;;;;;;9362:2:1;47179:116:0;;;9344:21:1;9401:2;9381:18;;;9374:30;9440:34;9420:18;;;9413:62;9511:10;9491:18;;;9484:38;9539:19;;47179:116:0;9160:404:1;47179:116:0;47306:57;47315:6;928:10;47337:25;47356:6;47337:16;:25;:::i;:::-;47306:8;:57::i;:::-;-1:-1:-1;47381:4:0;;46904:489;-1:-1:-1;;;;46904:489:0:o;59364:184::-;59493:15;;:47;;;;;:15;2368:55:1;;;59493:47:0;;;2350:74:1;59461:7:0;;59493:15;;:38;;2323:18:1;;59493:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59486:54;59364:184;-1:-1:-1;;59364:184:0:o;61762:136::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;61846:44:::1;::::0;;;;61870:10:::1;61846:44;::::0;::::1;10251:74:1::0;10341:18;;;10334:34;;;61846:23:0::1;::::0;::::1;::::0;::::1;::::0;10224:18:1;;61846:44:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;61762:136:::0;;:::o;45957:280::-;928:10;46055:4;46149:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;46055:4;;46077:130;;46127:7;;46149:47;;46186:10;;46149:47;:::i;62025:186::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;62096:20:::1;::::0;::::1;;::::0;;;:13:::1;:20;::::0;;;;;::::1;;62095:21;62087:58;;;::::0;::::1;::::0;;10964:2:1;62087:58:0::1;::::0;::::1;10946:21:1::0;11003:2;10983:18;;;10976:30;11042:26;11022:18;;;11015:54;11086:18;;62087:58:0::1;10762:348:1::0;62087:58:0::1;62156:20;;;::::0;;;:13:::1;:20;::::0;;;;:27;;;::::1;62179:4;62156:27;::::0;;62025:186::o;58699:96::-;58734:15;;;;:30;928:10;58773:12;58734:53;;;;;;;;;;2380:42:1;2368:55;;;58734:53:0;;;2350:74:1;2323:18;;58734:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58699:96::o;62219:195::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;62299:20:::1;::::0;::::1;;::::0;;;:13:::1;:20;::::0;;;;;::::1;;62291:57;;;::::0;::::1;::::0;;11564:2:1;62291:57:0::1;::::0;::::1;11546:21:1::0;11603:2;11583:18;;;11576:30;11642:26;11622:18;;;11615:54;11686:18;;62291:57:0::1;11362:348:1::0;62291:57:0::1;62359:20;;62382:5;62359:20:::0;;;:13:::1;:20;::::0;;;;:28;;;::::1;::::0;;62219:195::o;57350:334::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;57497:14:::1;:29:::0;;;57537:15:::1;:31:::0;;;57579:14:::1;:29:::0;;;57596:12;57633:28:::1;57555:13:::0;57514:12;57633:28:::1;:::i;:::-;:43;;;;:::i;:::-;57619:11;:57:::0;-1:-1:-1;;;57350:334:0:o;60442:288::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;60606:11:::1;:26:::0;;60643:18:::1;:40:::0;;;;60694:28;::::1;;::::0;60606:26;::::1;;;;60694:28:::0;;;;;;;;;;;;;;;::::1;::::0;;60442:288::o;58146:545::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;58269:15:::1;::::0;::::1;58247:38:::0;;::::1;58269:15:::0;::::1;58247:38;;58225:139;;;::::0;::::1;::::0;;11917:2:1;58225:139:0::1;::::0;::::1;11899:21:1::0;11956:2;11936:18;;;11929:30;11995:34;11975:18;;;11968:62;12066:21;12046:18;;;12039:49;12105:19;;58225:139:0::1;11715:415:1::0;58225:139:0::1;58422:15;::::0;58380:59:::1;::::0;58422:15:::1;::::0;;::::1;::::0;58380:59;::::1;::::0;::::1;::::0;58422:15:::1;::::0;58380:59:::1;58450:15;:48:::0;;;::::1;;::::0;::::1;::::0;;::::1;::::0;;;58552:25:::1;::::0;;;;;;;-1:-1:-1;;58450:48:0;58552:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;58450:48;58552:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58534:69;;;58612:4;58619:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58534:108;::::0;;::::1;::::0;;;;;;12575:42:1;12644:15;;;58534:108:0::1;::::0;::::1;12626:34:1::0;12696:15;;12676:18;;;12669:43;12538:18;;58534:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58653:13;:30:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;58146:545:0:o;61191:214::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;61288:3:::1;61281;:10;;:26;;;;;61302:5;61295:3;:12;;61281:26;61259:109;;;::::0;::::1;::::0;;12925:2:1;61259:109:0::1;::::0;::::1;12907:21:1::0;12964:2;12944:18;;;12937:30;13003:34;12983:18;;;12976:62;13074:3;13054:18;;;13047:31;13095:19;;61259:109:0::1;12723:397:1::0;61259:109:0::1;61379:12;:18:::0;61191:214::o;2826:103::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;2891:30:::1;2918:1;2891:18;:30::i;:::-;2826:103::o:0;59556:280::-;59789:15;;:39;;;;;:15;2368:55:1;;;59789:39:0;;;2350:74:1;59659:7:0;;;;;;;;;;59789:15;;;:30;;2323:18:1;;59789:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;59782:46;;;;-1:-1:-1;59782:46:0;;-1:-1:-1;59782:46:0;-1:-1:-1;59782:46:0;;-1:-1:-1;59556:280:0;-1:-1:-1;;59556:280:0:o;56309:171::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;56422:15:::1;::::0;:50:::1;::::0;;;;::::1;::::0;::::1;13801:25:1::0;;;56422:15:0::1;13862:55:1::0;;;13842:18;;;13835:83;56422:15:0;;::::1;::::0;:34:::1;::::0;13774:18:1;;56422:50:0::1;13627:297:1::0;45050:87:0;45089:13;45122:7;45115:14;;;;;:::i;57100:242::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;57230:13:::1;::::0;::::1;57222:21:::0;;::::1;57230:13:::0;::::1;57222:21;;57214:68;;;::::0;::::1;::::0;;14131:2:1;57214:68:0::1;::::0;::::1;14113:21:1::0;14170:2;14150:18;;;14143:30;14209:34;14189:18;;;14182:62;14280:4;14260:18;;;14253:32;14302:19;;57214:68:0::1;13929:398:1::0;57214:68:0::1;57293:41;57322:4;57328:5;57293:28;:41::i;:::-;57100:242:::0;;:::o;61906:111::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;61972:37:::1;::::0;61980:10:::1;::::0;61972:37;::::1;;;::::0;62001:7;;61972:37:::1;::::0;;;62001:7;61980:10;61972:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;46245:427:::0;928:10;46348:4;46397:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;46464:35;;;;46442:122;;;;;;;14534:2:1;46442:122:0;;;14516:21:1;14573:2;14553:18;;;14546:30;14612:34;14592:18;;;14585:62;14683:7;14663:18;;;14656:35;14708:19;;46442:122:0;14332:401:1;46442:122:0;46575:67;928:10;46598:7;46607:34;46626:15;46607:16;:34;:::i;46575:67::-;-1:-1:-1;46660:4:0;;46245:427;-1:-1:-1;;;46245:427:0:o;59844:140::-;59935:15;;:41;;;;;:15;2368:55:1;;;59935:41:0;;;2350:74:1;59908:7:0;;59935:15;;:32;;2323:18:1;;59935:41:0;2177:253:1;58986:184:0;59115:15;;:47;;;;;:15;2368:55:1;;;59115:47:0;;;2350:74:1;59083:7:0;;59115:15;;:38;;2323:18:1;;59115:47:0;2177:253:1;46680:216:0;46802:4;46824:42;928:10;46848:9;46859:6;46824:9;:42::i;60738:167::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;60817:2:::1;60810:3;:9;;:25;;;;;60830:5;60823:3;:12;;60810:25;60802:70;;;::::0;::::1;::::0;;14940:2:1;60802:70:0::1;::::0;::::1;14922:21:1::0;;;14959:18;;;14952:30;15018:34;14998:18;;;14991:62;15070:18;;60802:70:0::1;14738:356:1::0;60802:70:0::1;60883:8;:14:::0;60738:167::o;59178:178::-;59304:15;;:44;;;;;:15;2368:55:1;;;59304:44:0;;;2350:74:1;59272:7:0;;59304:15;;:35;;2323:18:1;;59304:44:0;2177:253:1;55836:331:0;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;55943:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;55921:138;;;::::0;::::1;::::0;;15301:2:1;55921:138:0::1;::::0;::::1;15283:21:1::0;15340:2;15320:18;;;15313:30;15379:34;15359:18;;;15352:62;15450:18;15430;;;15423:46;15486:19;;55921:138:0::1;15099:412:1::0;55921:138:0::1;56070:28;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;56125:34;;1943:41:1;;;56125:34:0::1;::::0;1916:18:1;56125:34:0::1;;;;;;;55836:331:::0;;:::o;62422:183::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;62503:7:::1;62498:100;62520:6;:13;62516:1;:17;;;62498:100;;;62582:4;62555:13;:24;62569:6;62576:1;62569:9;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;62555:24:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;62555:24:0;:31;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;62535:3;::::1;::::0;::::1;:::i;:::-;;;;62498:100;;60136:133:::0;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;60204:10:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;;::::0;;60241:20:::1;::::0;::::1;::::0;::::1;::::0;60217:8;1968:14:1;1961:22;1943:41;;1931:2;1916:18;;1803:187;60241:20:0::1;;;;;;;;60136:133:::0;:::o;56672:183::-;56799:15;;:48;;;;;:15;2368:55:1;;;56799:48:0;;;2350:74:1;56770:4:0;;56799:15;;:39;;2323:18:1;;56799:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;47401:110::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;47454:6:::1;:13:::0;;;::::1;47463:4;47454:13;::::0;;47491:12:::1;47478:10;:25:::0;47401:110::o;61413:165::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;61526:33:::1;::::0;;;::::1;;::::0;;;:24:::1;:33;::::0;;;;:44;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;61413:165::o;60913:134::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;60999:29:::1;::::0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;60913:134::o;59992:136::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;60061:11:::1;:22:::0;;;::::1;;;;::::0;;;::::1;;::::0;;60099:21:::1;::::0;::::1;::::0;::::1;::::0;60075:8;1968:14:1;1961:22;1943:41;;1931:2;1916:18;;1803:187;60277:157:0;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;60353:18:::1;:29:::0;;;::::1;;::::0;::::1;::::0;;;::::1;;::::0;;60398:28:::1;::::0;::::1;::::0;::::1;::::0;60374:8;1968:14:1;1961:22;1943:41;;1931:2;1916:18;;1803:187;56863:229:0;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;57005:15:::1;:34:::0;;;::::1;;;::::0;;::::1;;;::::0;;57050:15:::1;:34:::0;;;::::1;::::0;;;::::1;;::::0;;56863:229::o;3084:201::-;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;3173:22:::1;::::0;::::1;3165:73;;;::::0;::::1;::::0;;16087:2:1;3165:73:0::1;::::0;::::1;16069:21:1::0;16126:2;16106:18;;;16099:30;16165:34;16145:18;;;16138:62;16236:8;16216:18;;;16209:36;16262:19;;3165:73:0::1;15885:402:1::0;3165:73:0::1;3249:28;3268:8;3249:18;:28::i;62613:186::-:0;2221:7;2248:6;2395:23;2248:6;928:10;2395:23;2387:68;;;;;;;8247:2:1;2387:68:0;;;8229:21:1;;;8266:18;;;8259:30;8325:34;8305:18;;;8298:62;8377:18;;2387:68:0;8045:356:1;2387:68:0;62696:7:::1;62691:101;62713:6;:13;62709:1;:17;;;62691:101;;;62775:5;62748:13;:24;62762:6;62769:1;62762:9;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;62748:24:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;62748:24:0;:32;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;62728:3;::::1;::::0;::::1;:::i;:::-;;;;62691:101;;58803:175:::0;58849:18;;;;;;;58841:64;;;;;;;16494:2:1;58841:64:0;;;16476:21:1;16533:2;16513:18;;;16506:30;16572:34;16552:18;;;16545:62;16643:3;16623:18;;;16616:31;16664:19;;58841:64:0;16292:397:1;58841:64:0;58916:15;;;;:31;928:10;58956:12;848:98;51615:369;51742:19;;;51734:68;;;;;;;16896:2:1;51734:68:0;;;16878:21:1;16935:2;16915:18;;;16908:30;16974:34;16954:18;;;16947:62;17045:6;17025:18;;;17018:34;17069:19;;51734:68:0;16694:400:1;51734:68:0;51821:21;;;51813:68;;;;;;;17301:2:1;51813:68:0;;;17283:21:1;17340:2;17320:18;;;17313:30;17379:34;17359:18;;;17352:62;17450:4;17430:18;;;17423:32;17472:19;;51813:68:0;17099:398:1;51813:68:0;51892:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;51944:32;;2141:25:1;;;51944:32:0;;2114:18:1;51944:32:0;;;;;;;51615:369;;;:::o;47519:3471::-;47665:6;;;;;:44;;-1:-1:-1;2221:7:0;2248:6;;47692:17;;;2248:6;;47692:17;47665:44;:85;;;-1:-1:-1;2221:7:0;2248:6;;47730:20;;;2248:6;;47730:20;47665:85;:124;;;-1:-1:-1;47771:18:0;;;;;;;:10;:18;;;;;;;;47665:124;:166;;;-1:-1:-1;47810:21:0;;;;;;;:10;:21;;;;;;;;47665:166;47643:224;;;;;;;17704:2:1;47643:224:0;;;17686:21:1;17743:1;17723:18;;;17716:29;17781:10;17761:18;;;17754:38;17809:18;;47643:224:0;17502:331:1;47643:224:0;47889:21;;;;;;;:13;:21;;;;;;;;47888:22;47880:63;;;;;;;18040:2:1;47880:63:0;;;18022:21:1;18079:2;18059:18;;;18052:30;18118;18098:18;;;18091:58;18166:18;;47880:63:0;17838:352:1;47880:63:0;47963:24;;;;;;;:13;:24;;;;;;;;47962:25;47954:69;;;;;;;18397:2:1;47954:69:0;;;18379:21:1;18436:2;18416:18;;;18409:30;18475:33;18455:18;;;18448:61;18526:18;;47954:69:0;18195:355:1;47954:69:0;48044:20;;;48036:70;;;;;;;18757:2:1;48036:70:0;;;18739:21:1;18796:2;18776:18;;;18769:30;18835:34;18815:18;;;18808:62;18906:7;18886:18;;;18879:35;18931:19;;48036:70:0;18555:401:1;48036:70:0;48125:23;;;48117:71;;;;;;;19163:2:1;48117:71:0;;;19145:21:1;19202:2;19182:18;;;19175:30;19241:34;19221:18;;;19214:62;19312:5;19292:18;;;19285:33;19335:19;;48117:71:0;18961:399:1;48117:71:0;48201:20;48253:5;48241:8;;48225:13;45317:12;;;45229:108;48225:13;:24;;;;:::i;:::-;48224:34;;;;:::i;:::-;48201:57;;48269:18;48323:5;48307:12;;48291:13;45317:12;;;45229:108;48291:13;:28;;;;:::i;:::-;48290:38;;;;:::i;:::-;48269:59;;48371:12;48361:6;:22;;:54;;;-1:-1:-1;48387:28:0;;;;;;;:20;:28;;;;;;;;48361:54;48339:121;;;;;;;20079:2:1;48339:121:0;;;20061:21:1;20118:2;20098:18;;;20091:30;20157:19;20137:18;;;20130:47;20194:18;;48339:121:0;19877:341:1;48339:121:0;2221:7;2248:6;;48491:17;;;2248:6;;48491:17;;;;:60;;-1:-1:-1;48525:26:0;;;48546:4;48525:26;;48491:60;:103;;;;-1:-1:-1;48589:4:0;;;48568:26;;;48589:4;;48568:26;;48491:103;:146;;;;-1:-1:-1;48624:13:0;;;48611:26;;;48624:13;;48611:26;;48491:146;48473:403;;;45496:18;;;48664:22;45496:18;;;:9;:18;;;;;;;;;48750:24;:35;;;;;;;;;;:99;;-1:-1:-1;48838:10:0;48811:23;48828:6;48811:14;:23;:::i;:::-;:37;;48750:99;48724:140;;;;;;48649:227;48473:403;48912:17;;;48888:21;48912:17;;;:9;:17;;;;;;48962:23;;;;48940:111;;;;;;;20425:2:1;48940:111:0;;;20407:21:1;20464:2;20444:18;;;20437:30;20503:34;20483:18;;;20476:62;20574:8;20554:18;;;20547:36;20600:19;;48940:111:0;20223:402:1;48940:111:0;49113:4;49064:28;45496:18;;;:9;:18;;;;;;49235;;49284:11;;49162:21;;49211:42;;;;49284:11;;;;;:43;;;;;49320:7;49284:43;:77;;;;-1:-1:-1;49353:8:0;;;;49352:9;49284:77;:158;;;;-1:-1:-1;49409:33:0;;;;;;;:25;:33;;;;;;;;49408:34;49284:158;:258;;;;-1:-1:-1;49526:15:0;;;49508:34;;;49526:15;;49508:34;;49284:258;:330;;;;-1:-1:-1;2221:7:0;2248:6;;49597:17;;;2248:6;;49597:17;;49284:330;:367;;;;-1:-1:-1;2221:7:0;2248:6;;49631:20;;;2248:6;;49631:20;;49284:367;49266:700;;;49678:8;:15;;;;49689:4;49678:15;;;49715:12;;49678:15;49715:12;49710:95;;49771:18;;49748:41;;49710:95;49819:57;49832:20;49854:21;49819:12;:57::i;:::-;49908:15;49893:12;:30;49938:8;:16;;;;;;49266:700;50039:13;;49978:12;;50039:13;50021:32;;;50039:13;;50021:32;;:84;;-1:-1:-1;50091:13:0;;;50070:35;;;50091:13;;50070:35;50021:84;50003:155;;;-1:-1:-1;50142:4:0;50003:155;50174:27;;;;;;;:19;:27;;;;;;;;;:61;;-1:-1:-1;50205:30:0;;;;;;;:19;:30;;;;;;;;50174:61;50170:109;;;-1:-1:-1;50262:5:0;50170:109;50295:8;;;;;:23;;-1:-1:-1;50308:10:0;;;;;;;50307:11;50295:23;50291:71;;;-1:-1:-1;50345:5:0;50291:71;50378:7;50374:174;;;50402:12;50442:5;50427:11;;50418:6;:20;;;;:::i;:::-;50417:30;;;;:::i;:::-;50402:45;-1:-1:-1;50462:14:0;50402:45;50462:14;;:::i;:::-;;;50491:45;50508:6;50524:4;50531;50491:16;:45::i;:::-;50387:161;50374:174;50560:43;50577:6;50585:9;50596:6;50560:16;:43::i;:::-;50616:15;;;;:26;50651:6;50660:17;50651:6;45496:18;;45464:7;45496:18;;;:9;:18;;;;;;;45345:177;50660:17;50616:62;;;;;;;;;;10281:42:1;10269:55;;;50616:62:0;;;10251:74:1;10341:18;;;10334:34;10224:18;;50616:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50689:15:0;;;;;-1:-1:-1;50689:26:0;;-1:-1:-1;50724:9:0;50736:20;50724:9;45496:18;;45464:7;45496:18;;;:9;:18;;;;;;;45345:177;50736:20;50689:68;;;;;;;;;;10281:42:1;10269:55;;;50689:68:0;;;10251:74:1;10341:18;;;10334:34;10224:18;;50689:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50791:10;;50774:12;:28;;:69;;;;-1:-1:-1;50827:15:0;;;50806:37;;;50827:15;;50806:37;;50774:69;:110;;;;-1:-1:-1;50868:15:0;;;50847:37;;;50868:15;;50847:37;;50774:110;:149;;;;-1:-1:-1;50909:13:0;;;50888:35;;;50909:13;;50888:35;;50774:149;50770:213;;;50940:24;;;;;;;:13;:24;;;;;:31;;;;50967:4;50940:31;;;50770:213;47632:3358;;;;;;;47519:3471;;;:::o;3445:191::-;3519:16;3538:6;;;3555:17;;;;;;;;;;3588:40;;3538:6;;;;;;;3588:40;;3519:16;3588:40;3508:128;3445:191;:::o;57692:446::-;57797:31;;;;;;;:25;:31;;;;;;;;:40;;;;;;;57775:153;;;;;;;21150:2:1;57775:153:0;;;21132:21:1;21189:2;21169:18;;;21162:30;21228:34;21208:18;;;21201:62;21299:33;21279:18;;;21272:61;21350:19;;57775:153:0;20948:427:1;57775:153:0;57939:31;;;;;;;:25;:31;;;;;:39;;;;;;;;;;;;;;;57989:86;;58015:15;;:48;;;;;:15;8592:55:1;;;58015:48:0;;;8574:74:1;58015:15:0;8664:18:1;;;8657:50;58015:15:0;;;;:36;;8547:18:1;;58015:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57989:86;58090:40;;;;;;;;;;;;;;;57692:446;;:::o;53818:2010::-;53905:1;53895:6;:11;53891:50;;53818:2010;;:::o;53891:50::-;54003:15;;53953:27;;54003:15;;;53995:38;54003:15;53995:38;53991:132;;54100:11;;54082:14;;54073:23;;:6;:23;:::i;:::-;54072:39;;;;:::i;:::-;54050:61;;53991:132;54135:27;54209:1;54177:15;;;;;;;;;;;:27;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:33;54173:127;;;54277:11;;54259:14;;54250:23;;:6;:23;:::i;:::-;54249:39;;;;:::i;:::-;54227:61;;54173:127;54312:26;54398:19;54341:41;54363:19;54341:6;:41;:::i;:::-;:76;;;;:::i;:::-;54312:105;-1:-1:-1;54428:27:0;54458:22;54479:1;54312:105;54458:22;:::i;:::-;54428:52;-1:-1:-1;54491:26:0;54520:40;54428:52;54520:18;:40;:::i;:::-;54491:69;-1:-1:-1;54571:23:0;54667:19;54597:54;54632:19;54597;:54;:::i;:::-;:89;;;;:::i;:::-;54571:115;-1:-1:-1;54723:21:0;54755:36;54571:115;54755:19;:36::i;:::-;54802:21;54881:6;54827:37;54851:13;54827:21;:37;:::i;:::-;54826:61;;;;:::i;:::-;54802:85;-1:-1:-1;54900:23:0;54979:15;54927:35;54943:19;54802:85;54927:35;:::i;:::-;54926:68;;;;:::i;:::-;54900:94;-1:-1:-1;55005:23:0;55084:15;55032:35;55048:19;55032:13;:35;:::i;:::-;55031:68;;;;:::i;:::-;55005:94;-1:-1:-1;55110:23:0;55005:94;55136:44;55165:15;55136:13;:44;:::i;:::-;:75;;;;:::i;:::-;55110:101;-1:-1:-1;55228:19:0;;55224:102;;55272:15;;55264:50;;55272:15;;;;;;;55264:50;;;;;;;;;;;;55272:15;55264:50;;;;;;;;;;;;;;;;;;;;;55224:102;55338:49;55351:18;55371:15;55338:12;:49::i;:::-;55403:127;;;21582:25:1;;;21638:2;21623:18;;21616:34;;;21666:18;;;21659:34;;;55403:127:0;;21570:2:1;21555:18;55403:127:0;;;;;;;55547:19;;55543:278;;55610:15;;55602:89;;55584:12;;55610:15;;;55657;;55584:12;55602:89;55584:12;55602:89;55657:15;55610;55602:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55583:108;;;55710:7;55706:104;;;55743:51;;;22088:25:1;;;22144:2;22129:18;;22122:34;;;55743:51:0;;22061:18:1;55743:51:0;;;;;;;55706:104;55568:253;55543:278;53880:1948;;;;;;;;;;;53818:2010;;:::o;50998:609::-;51136:20;;;51128:70;;;;;;;18757:2:1;51128:70:0;;;18739:21:1;18796:2;18776:18;;;18769:30;18835:34;18815:18;;;18808:62;18906:7;18886:18;;;18879:35;18931:19;;51128:70:0;18555:401:1;51128:70:0;51217:23;;;51209:71;;;;;;;19163:2:1;51209:71:0;;;19145:21:1;19202:2;19182:18;;;19175:30;19241:34;19221:18;;;19214:62;19312:5;19292:18;;;19285:33;19335:19;;51209:71:0;18961:399:1;51209:71:0;51315:17;;;51291:21;51315:17;;;:9;:17;;;;;;51365:23;;;;51343:111;;;;;;;20425:2:1;51343:111:0;;;20407:21:1;20464:2;20444:18;;;20437:30;20503:34;20483:18;;;20476:62;20574:8;20554:18;;;20547:36;20600:19;;51343:111:0;20223:402:1;51343:111:0;51485:22;51501:6;51485:13;:22;:::i;:::-;51465:17;;;;;;;;:9;:17;;;;;;:42;;;;51518:20;;;;;;;;:30;;51542:6;;51465:17;51518:30;;51542:6;;51518:30;:::i;:::-;;;;;;;;51581:9;51564:35;;51573:6;51564:35;;;51592:6;51564:35;;;;2141:25:1;;2129:2;2114:18;;1995:177;51564:35:0;;;;;;;;51117:490;50998:609;;;:::o;52733:490::-;52821:16;;;52835:1;52821:16;;;;;;;;52797:21;;52821:16;;;;;;;;;;-1:-1:-1;52821:16:0;52797:40;;52866:4;52848;52853:1;52848:7;;;;;;;;:::i;:::-;:23;;;;:7;;;;;;;;;;:23;;;;52892:15;;:22;;;;;;;;:15;;;;;:20;;:22;;;;;52848:7;;52892:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52882:4;52887:1;52882:7;;;;;;;;:::i;:::-;:32;;;;:7;;;;;;;;;:32;52957:15;;52925:57;;52942:4;;52957:15;52975:6;52925:8;:57::i;:::-;52993:15;;:222;;;;;:15;;;;;:66;;:222;;53074:6;;52993:15;;53142:4;;53169;;53189:15;;52993:222;;;:::i;53231:395::-;53336:15;;53304:57;;53321:4;;53336:15;;53354:6;53304:8;:57::i;:::-;53372:15;;53562;;53372:246;;;;;53441:4;53372:246;;;23562:34:1;23612:18;;;23605:34;;;53372:15:0;23655:18:1;;;23648:34;;;23698:18;;;23691:34;53372:15:0;53562;;;23741:19:1;;;23734:44;53592:15:0;23794:19:1;;;23787:35;53372:15:0;;;:31;;53411:6;;23473:19:1;;53372:246:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;53231:395;;:::o;14:154:1:-;100:42;93:5;89:54;82:5;79:65;69:93;;158:1;155;148:12;173:134;241:20;;270:31;241:20;270:31;:::i;:::-;173:134;;;:::o;312:118::-;398:5;391:13;384:21;377:5;374:32;364:60;;420:1;417;410:12;435:382;500:6;508;561:2;549:9;540:7;536:23;532:32;529:52;;;577:1;574;567:12;529:52;616:9;603:23;635:31;660:5;635:31;:::i;:::-;685:5;-1:-1:-1;742:2:1;727:18;;714:32;755:30;714:32;755:30;:::i;:::-;804:7;794:17;;;435:382;;;;;:::o;822:656::-;934:4;963:2;992;981:9;974:21;1024:6;1018:13;1067:6;1062:2;1051:9;1047:18;1040:34;1092:1;1102:140;1116:6;1113:1;1110:13;1102:140;;;1211:14;;;1207:23;;1201:30;1177:17;;;1196:2;1173:26;1166:66;1131:10;;1102:140;;;1260:6;1257:1;1254:13;1251:91;;;1330:1;1325:2;1316:6;1305:9;1301:22;1297:31;1290:42;1251:91;-1:-1:-1;1394:2:1;1382:15;1399:66;1378:88;1363:104;;;;1469:2;1359:113;;822:656;-1:-1:-1;;;822:656:1:o;1483:315::-;1551:6;1559;1612:2;1600:9;1591:7;1587:23;1583:32;1580:52;;;1628:1;1625;1618:12;1580:52;1667:9;1654:23;1686:31;1711:5;1686:31;:::i;:::-;1736:5;1788:2;1773:18;;;;1760:32;;-1:-1:-1;;;1483:315:1:o;2435:456::-;2512:6;2520;2528;2581:2;2569:9;2560:7;2556:23;2552:32;2549:52;;;2597:1;2594;2587:12;2549:52;2636:9;2623:23;2655:31;2680:5;2655:31;:::i;:::-;2705:5;-1:-1:-1;2762:2:1;2747:18;;2734:32;2775:33;2734:32;2775:33;:::i;:::-;2435:456;;2827:7;;-1:-1:-1;;;2881:2:1;2866:18;;;;2853:32;;2435:456::o;2896:247::-;2955:6;3008:2;2996:9;2987:7;2983:23;2979:32;2976:52;;;3024:1;3021;3014:12;2976:52;3063:9;3050:23;3082:31;3107:5;3082:31;:::i;:::-;3132:5;2896:247;-1:-1:-1;;;2896:247:1:o;3831:316::-;3908:6;3916;3924;3977:2;3965:9;3956:7;3952:23;3948:32;3945:52;;;3993:1;3990;3983:12;3945:52;-1:-1:-1;;4016:23:1;;;4086:2;4071:18;;4058:32;;-1:-1:-1;4137:2:1;4122:18;;;4109:32;;3831:316;-1:-1:-1;3831:316:1:o;4152:444::-;4223:6;4231;4239;4292:2;4280:9;4271:7;4267:23;4263:32;4260:52;;;4308:1;4305;4298:12;4260:52;4347:9;4334:23;4366:28;4388:5;4366:28;:::i;:::-;4413:5;-1:-1:-1;4465:2:1;4450:18;;4437:32;;-1:-1:-1;4521:2:1;4506:18;;4493:32;4534:30;4493:32;4534:30;:::i;:::-;4583:7;4573:17;;;4152:444;;;;;:::o;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;-1:-1:-1;4752:23:1;;4601:180;-1:-1:-1;4601:180:1:o;5303:315::-;5371:6;5379;5432:2;5420:9;5411:7;5407:23;5403:32;5400:52;;;5448:1;5445;5438:12;5400:52;5484:9;5471:23;5461:33;;5544:2;5533:9;5529:18;5516:32;5557:31;5582:5;5557:31;:::i;5623:184::-;5675:77;5672:1;5665:88;5772:4;5769:1;5762:15;5796:4;5793:1;5786:15;5812:1180;5896:6;5927:2;5970;5958:9;5949:7;5945:23;5941:32;5938:52;;;5986:1;5983;5976:12;5938:52;6026:9;6013:23;6055:18;6096:2;6088:6;6085:14;6082:34;;;6112:1;6109;6102:12;6082:34;6150:6;6139:9;6135:22;6125:32;;6195:7;6188:4;6184:2;6180:13;6176:27;6166:55;;6217:1;6214;6207:12;6166:55;6253:2;6240:16;6275:2;6271;6268:10;6265:36;;;6281:18;;:::i;:::-;6327:2;6324:1;6320:10;6359:2;6353:9;6418:66;6413:2;6409;6405:11;6401:84;6393:6;6389:97;6536:6;6524:10;6521:22;6516:2;6504:10;6501:18;6498:46;6495:72;;;6547:18;;:::i;:::-;6583:2;6576:22;6633:18;;;6667:15;;;;-1:-1:-1;6709:11:1;;;6705:20;;;6737:19;;;6734:39;;;6769:1;6766;6759:12;6734:39;6793:11;;;;6813:148;6829:6;6824:3;6821:15;6813:148;;;6895:23;6914:3;6895:23;:::i;:::-;6883:36;;6846:12;;;;6939;;;;6813:148;;;6980:6;5812:1180;-1:-1:-1;;;;;;;;5812:1180:1:o;6997:241::-;7053:6;7106:2;7094:9;7085:7;7081:23;7077:32;7074:52;;;7122:1;7119;7112:12;7074:52;7161:9;7148:23;7180:28;7202:5;7180:28;:::i;7243:388::-;7311:6;7319;7372:2;7360:9;7351:7;7347:23;7343:32;7340:52;;;7388:1;7385;7378:12;7340:52;7427:9;7414:23;7446:31;7471:5;7446:31;:::i;:::-;7496:5;-1:-1:-1;7553:2:1;7538:18;;7525:32;7566:33;7525:32;7566:33;:::i;8718:437::-;8797:1;8793:12;;;;8840;;;8861:61;;8915:4;8907:6;8903:17;8893:27;;8861:61;8968:2;8960:6;8957:14;8937:18;8934:38;8931:218;;;9005:77;9002:1;8995:88;9106:4;9103:1;9096:15;9134:4;9131:1;9124:15;8931:218;;8718:437;;;:::o;9569:184::-;9621:77;9618:1;9611:88;9718:4;9715:1;9708:15;9742:4;9739:1;9732:15;9758:125;9798:4;9826:1;9823;9820:8;9817:34;;;9831:18;;:::i;:::-;-1:-1:-1;9868:9:1;;9758:125::o;9888:184::-;9958:6;10011:2;9999:9;9990:7;9986:23;9982:32;9979:52;;;10027:1;10024;10017:12;9979:52;-1:-1:-1;10050:16:1;;9888:184;-1:-1:-1;9888:184:1:o;10379:245::-;10446:6;10499:2;10487:9;10478:7;10474:23;10470:32;10467:52;;;10515:1;10512;10505:12;10467:52;10547:9;10541:16;10566:28;10588:5;10566:28;:::i;10629:128::-;10669:3;10700:1;10696:6;10693:1;10690:13;10687:39;;;10706:18;;:::i;:::-;-1:-1:-1;10742:9:1;;10629:128::o;12135:251::-;12205:6;12258:2;12246:9;12237:7;12233:23;12229:32;12226:52;;;12274:1;12271;12264:12;12226:52;12306:9;12300:16;12325:31;12350:5;12325:31;:::i;13125:497::-;13231:6;13239;13247;13255;13263;13316:3;13304:9;13295:7;13291:23;13287:33;13284:53;;;13333:1;13330;13323:12;13284:53;13365:9;13359:16;13384:31;13409:5;13384:31;:::i;:::-;13479:2;13464:18;;13458:25;13523:2;13508:18;;13502:25;13567:2;13552:18;;13546:25;13611:3;13596:19;;;13590:26;13434:5;;13458:25;;-1:-1:-1;13502:25:1;13546;-1:-1:-1;13590:26:1;;-1:-1:-1;13125:497:1;-1:-1:-1;;;13125:497:1:o;15516:184::-;15568:77;15565:1;15558:88;15665:4;15662:1;15655:15;15689:4;15686:1;15679:15;15705:175;15742:3;15786:4;15779:5;15775:16;15815:4;15806:7;15803:17;15800:43;;;15823:18;;:::i;:::-;15872:1;15859:15;;15705:175;-1:-1:-1;;15705:175:1:o;19365:228::-;19405:7;19531:1;19463:66;19459:74;19456:1;19453:81;19448:1;19441:9;19434:17;19430:105;19427:131;;;19538:18;;:::i;:::-;-1:-1:-1;19578:9:1;;19365:228::o;19598:274::-;19638:1;19664;19654:189;;19699:77;19696:1;19689:88;19800:4;19797:1;19790:15;19828:4;19825:1;19818:15;19654:189;-1:-1:-1;19857:9:1;;19598:274::o;22167:1026::-;22429:4;22477:3;22466:9;22462:19;22508:6;22497:9;22490:25;22534:2;22572:6;22567:2;22556:9;22552:18;22545:34;22615:3;22610:2;22599:9;22595:18;22588:31;22639:6;22674;22668:13;22705:6;22697;22690:22;22743:3;22732:9;22728:19;22721:26;;22782:2;22774:6;22770:15;22756:29;;22803:1;22813:218;22827:6;22824:1;22821:13;22813:218;;;22892:13;;22907:42;22888:62;22876:75;;23006:15;;;;22971:12;;;;22849:1;22842:9;22813:218;;;-1:-1:-1;;23099:42:1;23087:55;;;;23082:2;23067:18;;23060:83;-1:-1:-1;;;23174:3:1;23159:19;23152:35;23048:3;22167:1026;-1:-1:-1;;;22167:1026:1:o;23833:306::-;23921:6;23929;23937;23990:2;23978:9;23969:7;23965:23;23961:32;23958:52;;;24006:1;24003;23996:12;23958:52;24035:9;24029:16;24019:26;;24085:2;24074:9;24070:18;24064:25;24054:35;;24129:2;24118:9;24114:18;24108:25;24098:35;;23833:306;;;;;:::o
Swarm Source
ipfs://974e59f8e21b883b21d465f059d42843f04cbe6d65088837fce1b660e625e537
Loading...
Loading
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.