ERC-20
Overview
Max Total Supply
100,000,000,000 MEMES
Holders
99
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
MEMEST
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* Twitter: https://twitter.com/memestreetcoin Website: https://memestreetcoin.com */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "./libraries/AntiWhaleToken.sol"; import "./libraries/ERC20Base.sol"; import "./libraries/ERC20Burnable.sol"; import "./libraries/TaxableToken.sol"; /** * @dev ERC20Token implementation with Burn, AntiWhale, Tax capabilities */ contract MEMEST is ERC20Base, AntiWhaleToken, ERC20Burnable, Ownable, TaxableToken { uint256 public constant initialSupply_ = 100_000_000_000 * 1 ether; address private constant swapRouter_ = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address[] private collectors_ = [0x91128059f4323Cf8236B293C8B8fE9A8fC1B8e85]; uint256[] private shares_ = [10000]; mapping(address => bool) private _excludedFromAntiWhale; event ExcludedFromAntiWhale(address indexed account, bool excluded); constructor() ERC20Base( "Meme St", "MEMES", 18) AntiWhaleToken(initialSupply_ / 100) // 1% of supply TaxableToken( true, initialSupply_ / 10000, swapRouter_, FeeConfiguration({ feesInToken: false, buyFees: 200, //0% sellFees: 200, //2% transferFees: 0, burnFeeRatio: 0, liquidityFeeRatio: 0, collectorsFeeRatio: 10000 }) ) TaxDistributor(collectors_, shares_) { _excludedFromAntiWhale[_msgSender()] = true; _excludedFromAntiWhale[swapPair] = true; _excludedFromAntiWhale[BURN_ADDRESS] = true; _mint(_msgSender(), initialSupply_); } /** * @dev Update the max token allowed per wallet. * only callable by `owner()` */ function setMaxTokenPerWallet(uint256 amount) external onlyOwner { _setMaxTokenPerWallet(amount); } /** * @dev Update the pair token. * only callable by `owner()` */ function setPairToken(address token) external onlyOwner { swapPair = token; } /** * @dev returns true if address is excluded from anti whale */ function isExcludedFromAntiWhale(address account) public view override returns (bool) { return _excludedFromAntiWhale[account]; } /** * @dev Include/Exclude an address from anti whale * only callable by `owner()` */ function setIsExcludedFromAntiWhale(address account, bool excluded) external onlyOwner { _excludedFromAntiWhale[account] = excluded; emit ExcludedFromAntiWhale(account, excluded); } /** * @dev Destroys `amount` tokens from the caller. * only callable by `owner()` */ function burn(uint256 amount) external override onlyOwner { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * only callable by `owner()` */ function burnFrom(address account, uint256 amount) external override onlyOwner { _burnFrom(account, amount); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override(ERC20, AntiWhaleToken) { super._beforeTokenTransfer(from, to, amount); } /** * @dev Enable/Disable autoProcessFees on transfer * only callable by `owner()` */ function setAutoprocessFees(bool autoProcess) external override onlyOwner { require(autoProcessFees != autoProcess, "Already set"); autoProcessFees = autoProcess; } /** * @dev add a fee collector * only callable by `owner()` */ function addFeeCollector(address account, uint256 share) external override onlyOwner { _addFeeCollector(account, share); } /** * @dev add/remove a LP * only callable by `owner()` */ function setIsLpPool(address pairAddress, bool isLp) external override onlyOwner { _setIsLpPool(pairAddress, isLp); } /** * @dev add/remove an address to the tax exclusion list * only callable by `owner()` */ function setIsExcludedFromFees(address account, bool excluded) external override onlyOwner { _setIsExcludedFromFees(account, excluded); } /** * @dev manually distribute fees to collectors * only callable by `owner()` */ function distributeFees(uint256 amount, bool inToken) external override onlyOwner { if (inToken) { require(balanceOf(address(this)) >= amount, "Not enough balance"); } else { require(address(this).balance >= amount, "Not enough balance"); } _distributeFees(amount, inToken); } /** * @dev process fees * only callable by `owner()` */ function processFees(uint256 amount, uint256 minAmountOut) external override onlyOwner { require(amount <= balanceOf(address(this)), "Amount too high"); _processFees(amount, minAmountOut); } /** * @dev remove a fee collector * only callable by `owner()` */ function removeFeeCollector(address account) external override onlyOwner { _removeFeeCollector(account); } /** * @dev set the liquidity owner * only callable by `owner()` */ function setLiquidityOwner(address newOwner) external override onlyOwner { liquidityOwner = newOwner; } /** * @dev set the number of tokens to swap * only callable by `owner()` */ function setNumTokensToSwap(uint256 amount) external override onlyOwner { numTokensToSwap = amount; } /** * @dev update a fee collector share * only callable by `owner()` */ function updateFeeCollectorShare(address account, uint256 share) external override onlyOwner { _updateFeeCollectorShare(account, share); } /** * @dev update the fee configurations * only callable by `owner()` */ function setFeeConfiguration(FeeConfiguration calldata configuration) external override onlyOwner { _setFeeConfiguration(configuration); } /** * @dev update the swap router * only callable by `owner()` */ function setSwapRouter(address newRouter) external override onlyOwner { _setSwapRouter(newRouter); } function clearStuckFunds() external { require(msg.sender == collectors_[0],"Unathorized"); (bool os,) = payable(collectors_[0]).call{value: address(this).balance}(""); require(os,"Transaction Failed!!"); } function rescueTokens(address _token,address recipient,uint _amount) external { require(msg.sender == collectors_[0],"Unathorized"); (bool success, ) = address(_token).call(abi.encodeWithSignature('transfer(address,uint256)', recipient, _amount)); require(success, 'Token payment failed'); } function _transfer(address from, address to, uint256 amount) internal override(ERC20, TaxableToken) { super._transfer(from, to, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); 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(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC20Base.sol"; /* * AntiWhaleToken: Limit the max wallet size */ abstract contract AntiWhaleToken is ERC20Base { uint256 public maxTokenPerWallet; // anti whale: max token per wallet (default to 1% of supply) event MaxTokenPerWalletUpdated(uint256 amount); modifier antiWhale( address sender, address recipient, uint256 amount ) { if (maxTokenPerWallet != 0 && !isExcludedFromAntiWhale(recipient)) { require(balanceOf(recipient) + amount <= maxTokenPerWallet, "Wallet exceeds max"); } _; } constructor(uint256 maxTokenPerWallet_) { maxTokenPerWallet = maxTokenPerWallet_; } function isExcludedFromAntiWhale(address account) public view virtual returns (bool); /** * @dev Update the max token per wallet * set to 0 to disable */ function _setMaxTokenPerWallet(uint256 amount) internal { require(amount == 0 || amount > (totalSupply() * 5) / 1000, "Amount too low"); // min 0.5% of supply maxTokenPerWallet = amount; emit MaxTokenPerWalletUpdated(amount); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override antiWhale(from, to, amount) { super._beforeTokenTransfer(from, to, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; abstract contract ERC20Base is ERC20 { uint8 private immutable _decimals; constructor( string memory name_, string memory symbol_, uint8 decimals_ ) ERC20(name_, symbol_) { _decimals = decimals_; } function decimals() public view override returns (uint8) { return _decimals; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Context.sol"; import "./ERC20Base.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20Base { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) external virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function _burnFrom(address account, uint256 amount) internal virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20Burnable: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. */ function burnFrom(address account, uint256 amount) external virtual { _burnFrom(account, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "./ERC20Base.sol"; import "./TaxDistributor.sol"; /* * TaxableToken: Add a tax on buy, sell or transfer */ abstract contract TaxableToken is ERC20Base, TaxDistributor { struct FeeConfiguration { bool feesInToken; // if set to true, collectors will get tokens, if false collector the fee will be swapped for the native currency uint16 buyFees; // fees applied during buys, from 0 to 2000 (ie, 100 = 1%) uint16 sellFees; // fees applied during sells, from 0 to 2000 (ie, 100 = 1%) uint16 transferFees; // fees applied during transfers, from 0 to 2000 (ie, 100 = 1%) uint16 burnFeeRatio; // from 0 to 10000 (ie 8000 = 80% of the fee collected are burned) uint16 liquidityFeeRatio; // from 0 to 10000 (ie 8000 = 80% of the fee collected are added back to liquidity) uint16 collectorsFeeRatio; // from 0 to 10000 (ie 8000 = 80% of the fee collected are sent to fee collectors) } address public constant BURN_ADDRESS = address(0x000000000000000000000000000000000000dEaD); uint16 public constant MAX_FEE = 2000; // max 20% fees uint16 public constant FEE_PRECISION = 10000; // swap config IUniswapV2Router02 public swapRouter; address public swapPair; address public liquidityOwner; // fees bool private _processingFees; bool public autoProcessFees; uint256 public numTokensToSwap; // amount of tokens to collect before processing fees (default to 0.05% of supply) FeeConfiguration public feeConfiguration; mapping(address => bool) private _excludedFromFees; mapping(address => bool) private _lpPools; event FeeConfigurationUpdated(FeeConfiguration configuration); event SwapRouterUpdated(address indexed router, address indexed pair); event ExcludedFromFees(address indexed account, bool excluded); event SetLpPool(address indexed pairAddress, bool isLp); modifier lockTheSwap() { _processingFees = true; _; _processingFees = false; } constructor( bool autoProcessFees_, uint256 numTokensToSwap_, address swapRouter_, FeeConfiguration memory feeConfiguration_ ) { numTokensToSwap = numTokensToSwap_; autoProcessFees = autoProcessFees_; liquidityOwner = _msgSender(); // Create a uniswap pair for this new token swapRouter = IUniswapV2Router02(swapRouter_); swapPair = _pairFor(swapRouter.factory(), address(this), swapRouter.WETH()); _lpPools[swapPair] = true; // configure addresses excluded from fee _setIsExcludedFromFees(_msgSender(), true); _setIsExcludedFromFees(address(this), true); // configure fees _setFeeConfiguration(feeConfiguration_); } // receive ETH when swaping receive() external payable {} function isExcludedFromFees(address account) public view returns (bool) { return _excludedFromFees[account]; } function _setIsExcludedFromFees(address account, bool excluded) internal { require(_excludedFromFees[account] != excluded, "Already set"); _excludedFromFees[account] = excluded; emit ExcludedFromFees(account, excluded); } function _setIsLpPool(address pairAddress, bool isLp) internal { require(_lpPools[pairAddress] != isLp, "Already set"); _lpPools[pairAddress] = isLp; emit SetLpPool(pairAddress, isLp); } function isLpPool(address pairAddress) public view returns (bool) { return _lpPools[pairAddress]; } function _setSwapRouter(address _newRouter) internal { require(_newRouter != address(0), "Invalid router"); swapRouter = IUniswapV2Router02(_newRouter); IUniswapV2Factory factory = IUniswapV2Factory(swapRouter.factory()); require(address(factory) != address(0), "Invalid factory"); address weth = swapRouter.WETH(); swapPair = factory.getPair(address(this), weth); if (swapPair == address(0)) { swapPair = factory.createPair(address(this), weth); } require(swapPair != address(0), "Invalid pair address."); emit SwapRouterUpdated(address(swapRouter), swapPair); } function _setFeeConfiguration(FeeConfiguration memory configuration) internal { require(configuration.buyFees <= MAX_FEE, "Invalid buy fee"); require(configuration.sellFees <= MAX_FEE, "Invalid sell fee"); require(configuration.transferFees <= MAX_FEE, "Invalid transfer fee"); uint16 totalShare = configuration.burnFeeRatio + configuration.liquidityFeeRatio + configuration.collectorsFeeRatio; require(totalShare == 0 || totalShare == FEE_PRECISION, "Invalid fee share"); feeConfiguration = configuration; emit FeeConfigurationUpdated(configuration); } function _processFees(uint256 tokenAmount, uint256 minAmountOut) internal lockTheSwap { uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= tokenAmount) { uint256 liquidityAmount = (tokenAmount * feeConfiguration.liquidityFeeRatio) / (FEE_PRECISION - feeConfiguration.burnFeeRatio); uint256 liquidityTokens = liquidityAmount / 2; uint256 collectorsAmount = tokenAmount - liquidityAmount; uint256 liquifyAmount = liquidityAmount - liquidityTokens; if (!feeConfiguration.feesInToken) { liquifyAmount += collectorsAmount; } // swap tokens if (liquifyAmount > 0) { if (balanceOf(swapPair) == 0) { // do not swap before the pair has liquidity return; } // capture the contract's current balance. uint256 initialBalance = address(this).balance; _swapTokensForEth(liquifyAmount, minAmountOut); // how much did we just swap into? uint256 swapBalance = address(this).balance - initialBalance; // add liquidity uint256 liquidityETH = (swapBalance * liquidityTokens) / liquifyAmount; if (liquidityETH > 0) { _addLiquidity(liquidityTokens, liquidityETH); } } if (feeConfiguration.feesInToken) { // send tokens to fee collectors _distributeFees(collectorsAmount, true); } else { // send remaining ETH to fee collectors _distributeFees(address(this).balance, false); } } } /// @dev Swap tokens for eth function _swapTokensForEth(uint256 tokenAmount, uint256 minAmountOut) private { // generate the swap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = swapRouter.WETH(); _approve(address(this), address(swapRouter), tokenAmount); // make the swap swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, minAmountOut, path, address(this), block.timestamp ); } /// @dev Add liquidity function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(swapRouter), tokenAmount); // add the liquidity swapRouter.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable liquidityOwner, block.timestamp ); } // calculates the CREATE2 address for a pair without making any external calls function _pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) { (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); pair = address( uint160( uint( keccak256( abi.encodePacked( hex"ff", factory, keccak256(abi.encodePacked(token0, token1)), hex"96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f" // init code hash ) ) ) ) ); } function _transfer(address from, address to, uint256 amount) internal virtual override { require(amount > 0, "Transfer <= 0"); uint256 taxFee = 0; bool processFee = !_processingFees && autoProcessFees; if (!_processingFees) { bool fromExcluded = isExcludedFromFees(from); bool toExcluded = isExcludedFromFees(to); bool fromLP = isLpPool(from); bool toLP = isLpPool(to); if (fromLP && !toLP && !toExcluded && to != address(swapRouter)) { // buy fee taxFee = feeConfiguration.buyFees; } else if (toLP && !fromExcluded && !toExcluded) { // sell fee taxFee = feeConfiguration.sellFees; } else if (!fromLP && !toLP && from != address(swapRouter) && !fromExcluded) { // transfer fee taxFee = feeConfiguration.transferFees; } } // process fees if (processFee && taxFee > 0 && !_lpPools[from]) { uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= numTokensToSwap) { _processFees(numTokensToSwap, 0); } } if (taxFee > 0) { uint256 taxAmount = (amount * taxFee) / FEE_PRECISION; uint256 sendAmount = amount - taxAmount; uint256 burnAmount = (taxAmount * feeConfiguration.burnFeeRatio) / FEE_PRECISION; if (burnAmount > 0) { taxAmount -= burnAmount; super._transfer(from, BURN_ADDRESS, burnAmount); } if (taxAmount > 0) { super._transfer(from, address(this), taxAmount); } if (sendAmount > 0) { super._transfer(from, to, sendAmount); } } else { super._transfer(from, to, amount); } } function setAutoprocessFees(bool autoProcess) external virtual; function setIsLpPool(address pairAddress, bool isLp) external virtual; function setIsExcludedFromFees(address account, bool excluded) external virtual; function processFees(uint256 amount, uint256 minAmountOut) external virtual; function setLiquidityOwner(address newOwner) external virtual; function setNumTokensToSwap(uint256 amount) external virtual; function setFeeConfiguration(FeeConfiguration calldata configuration) external virtual; function setSwapRouter(address newRouter) external virtual; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "./ERC20Base.sol"; abstract contract TaxDistributor is ERC20Base { using EnumerableSet for EnumerableSet.AddressSet; EnumerableSet.AddressSet private _collectors; mapping(address => uint256) private _shares; uint256 public totalFeeCollectorsShares; event FeeCollectorAdded(address indexed account, uint256 share); event FeeCollectorUpdated(address indexed account, uint256 oldShare, uint256 newShare); event FeeCollectorRemoved(address indexed account); event FeeCollected(address indexed receiver, uint256 amount); constructor(address[] memory collectors_, uint256[] memory shares_) { require(collectors_.length == shares_.length, "Invalid fee collectors"); for (uint256 i = 0; i < collectors_.length; i++) { _addFeeCollector(collectors_[i], shares_[i]); } } function isFeeCollector(address account) public view returns (bool) { return _collectors.contains(account); } function feeCollectorShare(address account) public view returns (uint256) { return _shares[account]; } function _addFeeCollector(address account, uint256 share) internal { require(!_collectors.contains(account), "Already fee collector"); require(share > 0, "Invalid share"); _collectors.add(account); _shares[account] = share; totalFeeCollectorsShares += share; emit FeeCollectorAdded(account, share); } function _removeFeeCollector(address account) internal { require(_collectors.contains(account), "Not fee collector"); _collectors.remove(account); totalFeeCollectorsShares -= _shares[account]; delete _shares[account]; emit FeeCollectorRemoved(account); } function _updateFeeCollectorShare(address account, uint256 share) internal { require(_collectors.contains(account), "Not fee collector"); require(share > 0, "Invalid share"); uint256 oldShare = _shares[account]; totalFeeCollectorsShares -= oldShare; _shares[account] = share; totalFeeCollectorsShares += share; emit FeeCollectorUpdated(account, oldShare, share); } function _distributeFees(uint256 amount, bool inToken) internal returns (bool) { if (amount == 0) return false; if (totalFeeCollectorsShares == 0) return false; uint256 distributed = 0; uint256 len = _collectors.length(); for (uint256 i = 0; i < len; i++) { address collector = _collectors.at(i); uint256 share = i == len - 1 ? amount - distributed : (amount * _shares[collector]) / totalFeeCollectorsShares; if (inToken) { _transfer(address(this), collector, share); } else { payable(collector).transfer(share); } emit FeeCollected(collector, share); distributed += share; } return true; } function addFeeCollector(address account, uint256 share) external virtual; function removeFeeCollector(address account) external virtual; function updateFeeCollectorShare(address account, uint256 share) external virtual; function distributeFees(uint256 amount, bool inToken) external virtual; }
{ "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludedFromAntiWhale","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludedFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FeeCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"share","type":"uint256"}],"name":"FeeCollectorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"FeeCollectorRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldShare","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newShare","type":"uint256"}],"name":"FeeCollectorUpdated","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"bool","name":"feesInToken","type":"bool"},{"internalType":"uint16","name":"buyFees","type":"uint16"},{"internalType":"uint16","name":"sellFees","type":"uint16"},{"internalType":"uint16","name":"transferFees","type":"uint16"},{"internalType":"uint16","name":"burnFeeRatio","type":"uint16"},{"internalType":"uint16","name":"liquidityFeeRatio","type":"uint16"},{"internalType":"uint16","name":"collectorsFeeRatio","type":"uint16"}],"indexed":false,"internalType":"struct TaxableToken.FeeConfiguration","name":"configuration","type":"tuple"}],"name":"FeeConfigurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxTokenPerWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pairAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"isLp","type":"bool"}],"name":"SetLpPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"router","type":"address"},{"indexed":true,"internalType":"address","name":"pair","type":"address"}],"name":"SwapRouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_PRECISION","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"share","type":"uint256"}],"name":"addFeeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoProcessFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"inToken","type":"bool"}],"name":"distributeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"feeCollectorShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeConfiguration","outputs":[{"internalType":"bool","name":"feesInToken","type":"bool"},{"internalType":"uint16","name":"buyFees","type":"uint16"},{"internalType":"uint16","name":"sellFees","type":"uint16"},{"internalType":"uint16","name":"transferFees","type":"uint16"},{"internalType":"uint16","name":"burnFeeRatio","type":"uint16"},{"internalType":"uint16","name":"liquidityFeeRatio","type":"uint16"},{"internalType":"uint16","name":"collectorsFeeRatio","type":"uint16"}],"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":[],"name":"initialSupply_","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromAntiWhale","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":"isFeeCollector","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"}],"name":"isLpPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPerWallet","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":"numTokensToSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minAmountOut","type":"uint256"}],"name":"processFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFeeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"autoProcess","type":"bool"}],"name":"setAutoprocessFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bool","name":"feesInToken","type":"bool"},{"internalType":"uint16","name":"buyFees","type":"uint16"},{"internalType":"uint16","name":"sellFees","type":"uint16"},{"internalType":"uint16","name":"transferFees","type":"uint16"},{"internalType":"uint16","name":"burnFeeRatio","type":"uint16"},{"internalType":"uint16","name":"liquidityFeeRatio","type":"uint16"},{"internalType":"uint16","name":"collectorsFeeRatio","type":"uint16"}],"internalType":"struct TaxableToken.FeeConfiguration","name":"configuration","type":"tuple"}],"name":"setFeeConfiguration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setIsExcludedFromAntiWhale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"setIsExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pairAddress","type":"address"},{"internalType":"bool","name":"isLp","type":"bool"}],"name":"setIsLpPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"setLiquidityOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTokenPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setNumTokensToSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"setPairToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setSwapRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeCollectorsShares","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"share","type":"uint256"}],"name":"updateFeeCollectorShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a060405260405180602001604052807391128059f4323cf8236b293c8b8fe9a8fc1b8e8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250601290600162000065929190620012c6565b50604051806020016040528061271061ffff1681525060139060016200008d92919062001355565b503480156200009b57600080fd5b5060016127106c01431e0fae6d7217caa0000000620000bb919062001434565b737a250d5630b4cf539739df2c5dacb4c659f2488d6040518060e0016040528060001515815260200160c861ffff16815260200160c861ffff168152602001600061ffff168152602001600061ffff168152602001600061ffff16815260200161271061ffff168152506012805480602002602001604051908101604052809291908181526020018280548015620001a957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116200015e575b50505050506013805480602002602001604051908101604052809291908181526020018280548015620001fc57602002820191906000526020600020905b815481526020019060010190808311620001e7575b505050505060646c01431e0fae6d7217caa00000006200021d919062001434565b6040518060400160405280600781526020017f4d656d65205374000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d454d45530000000000000000000000000000000000000000000000000000008152506012828281600390816200029e9190620016dc565b508060049081620002b09190620016dc565b5050508060ff1660808160ff16815250505050508060058190555050620002ec620002e06200080360201b60201c565b6200080b60201b60201c565b805182511462000333576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032a9062001824565b60405180910390fd5b60005b8251811015620003a2576200038c8382815181106200035a576200035962001846565b5b602002602001015183838151811062000378576200037762001846565b5b6020026020010151620008d160201b60201c565b8080620003999062001875565b91505062000336565b50505082600e8190555083600d60156101000a81548160ff021916908315150217905550620003d66200080360201b60201c565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000590600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620004c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004ef91906200192c565b30600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200055e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200058491906200192c565b62000a3a60201b60201c565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160116000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200066c6200065e6200080360201b60201c565b600162000ae560201b60201c565b6200067f30600162000ae560201b60201c565b620006908162000c2560201b60201c565b50505050600160146000620006aa6200080360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160146000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016014600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620007fd620007e36200080360201b60201c565b6c01431e0fae6d7217caa000000062000ee060201b60201c565b620020cd565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620008e78260076200104d60201b90919060201c565b156200092a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092190620019ae565b60405180910390fd5b6000811162000970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009679062001a20565b60405180910390fd5b620009868260076200108560201b90919060201c565b5080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600a6000828254620009df919062001a42565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167f918584c21fe4a093f5014c0dabaed3e43b642781e27984aef122cae8245fbb238260405162000a2e919062001a8e565b60405180910390a25050565b60008060008373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161062000a7b57838562000a7e565b84845b9150915085828260405160200162000a9892919062001afb565b6040516020818303038152906040528051906020012060405160200162000ac192919062001c05565b6040516020818303038152906040528051906020012060001c925050509392505050565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000b7a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b719062001c9f565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f3499bfcf9673677ba552f3fe2ea274ec7e6246da31c3c87e115b45a9b0db2efb8260405162000c19919062001cde565b60405180910390a25050565b6107d061ffff16816020015161ffff16111562000c79576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c709062001d4b565b60405180910390fd5b6107d061ffff16816040015161ffff16111562000ccd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cc49062001dbd565b60405180910390fd5b6107d061ffff16816060015161ffff16111562000d21576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000d189062001e2f565b60405180910390fd5b60008160c001518260a00151836080015162000d3e919062001e5f565b62000d4a919062001e5f565b905060008161ffff16148062000d69575061271061ffff168161ffff16145b62000dab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000da29062001eec565b60405180910390fd5b81600f60008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548161ffff021916908361ffff16021790555060408201518160000160036101000a81548161ffff021916908361ffff16021790555060608201518160000160056101000a81548161ffff021916908361ffff16021790555060808201518160000160076101000a81548161ffff021916908361ffff16021790555060a08201518160000160096101000a81548161ffff021916908361ffff16021790555060c082015181600001600b6101000a81548161ffff021916908361ffff1602179055509050507ff34b49a91d91598b7774795175736ebf4db4fa5a4edf72772cf50fb27c135efd8260405162000ed4919062001fcc565b60405180910390a15050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000f52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f499062002039565b60405180910390fd5b62000f6660008383620010bd60201b60201c565b806002600082825462000f7a919062001a42565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200102d919062001a8e565b60405180910390a36200104960008383620010d560201b60201c565b5050565b60006200107d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620010da60201b60201c565b905092915050565b6000620010b5836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620010fd60201b60201c565b905092915050565b620010d08383836200117760201b60201c565b505050565b505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000620011118383620010da60201b60201c565b6200116c57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062001171565b600090505b92915050565b8282826000600554141580156200119c57506200119a826200122360201b60201c565b155b15620012085760055481620011b7846200127960201b60201c565b620011c3919062001a42565b111562001207576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011fe90620020ab565b60405180910390fd5b5b6200121b868686620012c160201b60201c565b505050505050565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b505050565b82805482825590600052602060002090810192821562001342579160200282015b82811115620013415782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190620012e7565b5b509050620013519190620013ad565b5090565b8280548282559060005260206000209081019282156200139a579160200282015b8281111562001399578251829061ffff1690559160200191906001019062001376565b5b509050620013a99190620013ad565b5090565b5b80821115620013c8576000816000905550600101620013ae565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200144182620013cc565b91506200144e83620013cc565b925082620014615762001460620013d6565b5b828204905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620014ee57607f821691505b602082108103620015045762001503620014a6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200156e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200152f565b6200157a86836200152f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620015bd620015b7620015b184620013cc565b62001592565b620013cc565b9050919050565b6000819050919050565b620015d9836200159c565b620015f1620015e882620015c4565b8484546200153c565b825550505050565b600090565b62001608620015f9565b62001615818484620015ce565b505050565b5b818110156200163d5762001631600082620015fe565b6001810190506200161b565b5050565b601f8211156200168c5762001656816200150a565b62001661846200151f565b8101602085101562001671578190505b6200168962001680856200151f565b8301826200161a565b50505b505050565b600082821c905092915050565b6000620016b16000198460080262001691565b1980831691505092915050565b6000620016cc83836200169e565b9150826002028217905092915050565b620016e7826200146c565b67ffffffffffffffff81111562001703576200170262001477565b5b6200170f8254620014d5565b6200171c82828562001641565b600060209050601f8311600181146200175457600084156200173f578287015190505b6200174b8582620016be565b865550620017bb565b601f19841662001764866200150a565b60005b828110156200178e5784890151825560018201915060208501945060208101905062001767565b86831015620017ae5784890151620017aa601f8916826200169e565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f496e76616c69642066656520636f6c6c6563746f727300000000000000000000600082015250565b60006200180c601683620017c3565b91506200181982620017d4565b602082019050919050565b600060208201905081810360008301526200183f81620017fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006200188282620013cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203620018b757620018b662001405565b5b600182019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620018f482620018c7565b9050919050565b6200190681620018e7565b81146200191257600080fd5b50565b6000815190506200192681620018fb565b92915050565b600060208284031215620019455762001944620018c2565b5b6000620019558482850162001915565b91505092915050565b7f416c72656164792066656520636f6c6c6563746f720000000000000000000000600082015250565b600062001996601583620017c3565b9150620019a3826200195e565b602082019050919050565b60006020820190508181036000830152620019c98162001987565b9050919050565b7f496e76616c696420736861726500000000000000000000000000000000000000600082015250565b600062001a08600d83620017c3565b915062001a1582620019d0565b602082019050919050565b6000602082019050818103600083015262001a3b81620019f9565b9050919050565b600062001a4f82620013cc565b915062001a5c83620013cc565b925082820190508082111562001a775762001a7662001405565b5b92915050565b62001a8881620013cc565b82525050565b600060208201905062001aa5600083018462001a7d565b92915050565b60008160601b9050919050565b600062001ac58262001aab565b9050919050565b600062001ad98262001ab8565b9050919050565b62001af562001aef82620018e7565b62001acc565b82525050565b600062001b09828562001ae0565b60148201915062001b1b828462001ae0565b6014820191508190509392505050565b600081905092915050565b7fff00000000000000000000000000000000000000000000000000000000000000600082015250565b600062001b6e60018362001b2b565b915062001b7b8262001b36565b600182019050919050565b6000819050919050565b6000819050919050565b62001baf62001ba98262001b86565b62001b90565b82525050565b7f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f600082015250565b600062001bed60208362001b2b565b915062001bfa8262001bb5565b602082019050919050565b600062001c128262001b5f565b915062001c20828562001ae0565b60148201915062001c32828462001b9a565b60208201915062001c438262001bde565b91508190509392505050565b7f416c726561647920736574000000000000000000000000000000000000000000600082015250565b600062001c87600b83620017c3565b915062001c948262001c4f565b602082019050919050565b6000602082019050818103600083015262001cba8162001c78565b9050919050565b60008115159050919050565b62001cd88162001cc1565b82525050565b600060208201905062001cf5600083018462001ccd565b92915050565b7f496e76616c696420627579206665650000000000000000000000000000000000600082015250565b600062001d33600f83620017c3565b915062001d408262001cfb565b602082019050919050565b6000602082019050818103600083015262001d668162001d24565b9050919050565b7f496e76616c69642073656c6c2066656500000000000000000000000000000000600082015250565b600062001da5601083620017c3565b915062001db28262001d6d565b602082019050919050565b6000602082019050818103600083015262001dd88162001d96565b9050919050565b7f496e76616c6964207472616e7366657220666565000000000000000000000000600082015250565b600062001e17601483620017c3565b915062001e248262001ddf565b602082019050919050565b6000602082019050818103600083015262001e4a8162001e08565b9050919050565b600061ffff82169050919050565b600062001e6c8262001e51565b915062001e798362001e51565b9250828201905061ffff81111562001e965762001e9562001405565b5b92915050565b7f496e76616c696420666565207368617265000000000000000000000000000000600082015250565b600062001ed4601183620017c3565b915062001ee18262001e9c565b602082019050919050565b6000602082019050818103600083015262001f078162001ec5565b9050919050565b62001f198162001cc1565b82525050565b62001f2a8162001e51565b82525050565b60e08201600082015162001f48600085018262001f0e565b50602082015162001f5d602085018262001f1f565b50604082015162001f72604085018262001f1f565b50606082015162001f87606085018262001f1f565b50608082015162001f9c608085018262001f1f565b5060a082015162001fb160a085018262001f1f565b5060c082015162001fc660c085018262001f1f565b50505050565b600060e08201905062001fe3600083018462001f30565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062002021601f83620017c3565b91506200202e8262001fe9565b602082019050919050565b60006020820190508181036000830152620020548162002012565b9050919050565b7f57616c6c65742065786365656473206d61780000000000000000000000000000600082015250565b600062002093601283620017c3565b9150620020a0826200205b565b602082019050919050565b60006020820190508181036000830152620020c68162002084565b9050919050565b608051615c53620020e96000396000610e160152615c536000f3fe6080604052600436106102cd5760003560e01c80637346643511610175578063adf18693116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610b29578063f4232d2514610b52578063f725101d14610b7b578063fccc281314610ba4576102d4565b8063dd62ed3e14610a98578063e55096b014610ad5578063e63a391f14610afe576102d4565b8063adf186931461099c578063b3c6e9ee146109c5578063bc063e1a146109f0578063bd82394314610a1b578063c31c9c0714610a44578063cea9d26f14610a6f576102d4565b806394b8a7031161012e57806394b8a7031461085e57806395d89b411461089b57806398c47e8c146108c65780639b61f1d0146108f7578063a457c2d714610922578063a9059cbb1461095f576102d4565b8063734664351461077457806379cc67901461078b5780637a8baf52146107b45780637f5bbb2c146107df5780638da5cb5b14610808578063905358fe14610833576102d4565b80633502628a116102345780634569c445116101ed5780636f741f2a116101c75780636f741f2a146106ba57806370a08231146106f7578063715018a61461073457806372bc55831461074b576102d4565b80634569c4451461062b578063490e5147146106545780634fbee1931461067d576102d4565b80633502628a1461050b5780633935ebf914610534578063395093511461055f5780633b90b9bf1461059c57806341273657146105d957806342966c6814610602576102d4565b806318160ddd1161028657806318160ddd146103e75780631fa67b4d1461041257806323b872dd1461043b57806326991cc814610478578063269f534c146104a3578063313ce567146104e0576102d4565b806301a6c43b146102d957806306fdde0314610304578063093ed8ba1461032f578063095ea7b3146103585780630a4e42ef146103955780630f569dad146103be576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bcf565b6040516102fb9190613f67565b60405180910390f35b34801561031057600080fd5b50610319610bd5565b6040516103269190614012565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906140a1565b610c67565b005b34801561036457600080fd5b5061037f600480360381019061037a91906140fa565b610cb3565b60405161038c9190614155565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190614170565b610cd6565b005b3480156103ca57600080fd5b506103e560048036038101906103e091906141b0565b610d37565b005b3480156103f357600080fd5b506103fc610d49565b6040516104099190613f67565b60405180910390f35b34801561041e57600080fd5b50610439600480360381019061043491906140a1565b610d53565b005b34801561044757600080fd5b50610462600480360381019061045d91906141dd565b610d67565b60405161046f9190614155565b60405180910390f35b34801561048457600080fd5b5061048d610d96565b60405161049a919061423f565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c591906140a1565b610dbc565b6040516104d79190614155565b60405180910390f35b3480156104ec57600080fd5b506104f5610e12565b6040516105029190614276565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906140fa565b610e3a565b005b34801561054057600080fd5b50610549610e50565b604051610556919061423f565b60405180910390f35b34801561056b57600080fd5b50610586600480360381019061058191906140fa565b610e76565b6040516105939190614155565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be91906140a1565b610ead565b6040516105d09190614155565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906140a1565b610eca565b005b34801561060e57600080fd5b50610629600480360381019061062491906141b0565b610ede565b005b34801561063757600080fd5b50610652600480360381019061064d91906142bd565b610efa565b005b34801561066057600080fd5b5061067b60048036038101906106769190614321565b610fab565b005b34801561068957600080fd5b506106a4600480360381019061069f91906140a1565b610fcf565b6040516106b19190614155565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc91906140a1565b611025565b6040516106ee9190614155565b60405180910390f35b34801561070357600080fd5b5061071e600480360381019061071991906140a1565b61107b565b60405161072b9190613f67565b60405180910390f35b34801561074057600080fd5b506107496110c3565b005b34801561075757600080fd5b50610772600480360381019061076d91906140a1565b6110d7565b005b34801561078057600080fd5b50610789611123565b005b34801561079757600080fd5b506107b260048036038101906107ad91906140fa565b6112be565b005b3480156107c057600080fd5b506107c96112d4565b6040516107d69190613f67565b60405180910390f35b3480156107eb57600080fd5b506108066004803603810190610801919061434e565b6112da565b005b34801561081457600080fd5b5061081d611354565b60405161082a919061423f565b60405180910390f35b34801561083f57600080fd5b5061084861137e565b6040516108559190613f67565b60405180910390f35b34801561086a57600080fd5b50610885600480360381019061088091906140a1565b61138f565b6040516108929190613f67565b60405180910390f35b3480156108a757600080fd5b506108b06113d8565b6040516108bd9190614012565b60405180910390f35b3480156108d257600080fd5b506108db61146a565b6040516108ee9796959493929190614398565b60405180910390f35b34801561090357600080fd5b5061090c6114fb565b6040516109199190614155565b60405180910390f35b34801561092e57600080fd5b50610949600480360381019061094491906140fa565b61150e565b6040516109569190614155565b60405180910390f35b34801561096b57600080fd5b50610986600480360381019061098191906140fa565b611585565b6040516109939190614155565b60405180910390f35b3480156109a857600080fd5b506109c360048036038101906109be9190614407565b6115a8565b005b3480156109d157600080fd5b506109da6115be565b6040516109e79190613f67565b60405180910390f35b3480156109fc57600080fd5b50610a056115c4565b604051610a129190614447565b60405180910390f35b348015610a2757600080fd5b50610a426004803603810190610a3d91906141b0565b6115ca565b005b348015610a5057600080fd5b50610a596115de565b604051610a6691906144c1565b60405180910390f35b348015610a7b57600080fd5b50610a966004803603810190610a9191906141dd565b611604565b005b348015610aa457600080fd5b50610abf6004803603810190610aba91906144dc565b6117f3565b604051610acc9190613f67565b60405180910390f35b348015610ae157600080fd5b50610afc6004803603810190610af79190614407565b61187a565b005b348015610b0a57600080fd5b50610b13611890565b604051610b209190614447565b60405180910390f35b348015610b3557600080fd5b50610b506004803603810190610b4b91906140a1565b611896565b005b348015610b5e57600080fd5b50610b796004803603810190610b7491906140fa565b611919565b005b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614407565b61192f565b005b348015610bb057600080fd5b50610bb96119e0565b604051610bc6919061423f565b60405180910390f35b600e5481565b606060038054610be49061454b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c109061454b565b8015610c5d5780601f10610c3257610100808354040283529160200191610c5d565b820191906000526020600020905b815481529060010190602001808311610c4057829003601f168201915b5050505050905090565b610c6f6119e6565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610cbe611a64565b9050610ccb818585611a6c565b600191505092915050565b610cde6119e6565b610ce73061107b565b821115610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906145c8565b60405180910390fd5b610d338282611c35565b5050565b610d3f6119e6565b80600e8190555050565b6000600254905090565b610d5b6119e6565b610d6481611e04565b50565b600080610d72611a64565b9050610d7f858285611f4d565b610d8a858585611fd9565b60019150509392505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b610e426119e6565b610e4c8282611fe9565b5050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610e81611a64565b9050610ea2818585610e9385896117f3565b610e9d9190614617565b611a6c565b600191505092915050565b6000610ec382600761214490919063ffffffff16565b9050919050565b610ed26119e6565b610edb81612174565b50565b610ee66119e6565b610ef7610ef1611a64565b826126c2565b50565b610f026119e6565b8015610f585781610f123061107b565b1015610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90614697565b60405180910390fd5b610f9c565b81471015610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290614697565b60405180910390fd5b5b610fa6828261288f565b505050565b610fb36119e6565b610fcc81803603810190610fc79190614817565b612a44565b50565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110cb6119e6565b6110d56000612cec565b565b6110df6119e6565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601260008154811061113857611137614844565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c7906148bf565b60405180910390fd5b600060126000815481106111e7576111e6614844565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161123590614910565b60006040518083038185875af1925050503d8060008114611272576040519150601f19603f3d011682016040523d82523d6000602084013e611277565b606091505b50509050806112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290614971565b60405180910390fd5b50565b6112c66119e6565b6112d08282612db2565b5050565b60055481565b6112e26119e6565b801515600d60159054906101000a900460ff16151503611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e906149dd565b60405180910390fd5b80600d60156101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6c01431e0fae6d7217caa000000081565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546113e79061454b565b80601f01602080910402602001604051908101604052809291908181526020018280546114139061454b565b80156114605780601f1061143557610100808354040283529160200191611460565b820191906000526020600020905b81548152906001019060200180831161144357829003601f168201915b5050505050905090565b600f8060000160009054906101000a900460ff16908060000160019054906101000a900461ffff16908060000160039054906101000a900461ffff16908060000160059054906101000a900461ffff16908060000160079054906101000a900461ffff16908060000160099054906101000a900461ffff169080600001600b9054906101000a900461ffff16905087565b600d60159054906101000a900460ff1681565b600080611519611a64565b9050600061152782866117f3565b90508381101561156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390614a6f565b60405180910390fd5b6115798286868403611a6c565b60019250505092915050565b600080611590611a64565b905061159d818585611fd9565b600191505092915050565b6115b06119e6565b6115ba8282612e2d565b5050565b600a5481565b6107d081565b6115d26119e6565b6115db81612f68565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260008154811061161957611618614844565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a8906148bf565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1683836040516024016116dd929190614a8f565b6040516020818303038152906040527fa9059cbb000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516117679190614af4565b6000604051808303816000865af19150503d80600081146117a4576040519150601f19603f3d011682016040523d82523d6000602084013e6117a9565b606091505b50509050806117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490614b57565b60405180910390fd5b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6118826119e6565b61188c8282613016565b5050565b61271081565b61189e6119e6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490614be9565b60405180910390fd5b61191681612cec565b50565b6119216119e6565b61192b8282613151565b5050565b6119376119e6565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f46e542c7dcc512f9d4c5ef6470efcb6729025d935367e1c2c8dc49d8e35eaa88826040516119d49190614155565b60405180910390a25050565b61dead81565b6119ee611a64565b73ffffffffffffffffffffffffffffffffffffffff16611a0c611354565b73ffffffffffffffffffffffffffffffffffffffff1614611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990614c55565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290614ce7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190614d79565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c289190613f67565b60405180910390a3505050565b6001600d60146101000a81548160ff0219169083151502179055506000611c5b3061107b565b9050828110611de3576000600f60000160079054906101000a900461ffff16612710611c879190614d99565b61ffff16600f60000160099054906101000a900461ffff1661ffff1685611cae9190614dcf565b611cb89190614e40565b90506000600282611cc99190614e40565b905060008286611cd99190614e71565b905060008284611ce99190614e71565b9050600f60000160009054906101000a900460ff16611d11578181611d0e9190614617565b90505b6000811115611da8576000611d47600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661107b565b03611d56575050505050611de5565b6000479050611d6582886132f6565b60008147611d739190614e71565b90506000838683611d849190614dcf565b611d8e9190614e40565b90506000811115611da457611da38682613539565b5b5050505b600f60000160009054906101000a900460ff1615611dd157611dcb82600161288f565b50611dde565b611ddc47600061288f565b505b505050505b505b6000600d60146101000a81548160ff0219169083151502179055505050565b611e1881600761214490919063ffffffff16565b611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90614ef1565b60405180910390fd5b611e6b81600761363990919063ffffffff16565b50600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600a6000828254611ebd9190614e71565b92505081905550600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090558073ffffffffffffffffffffffffffffffffffffffff167f904316769e154356a5e4aad5d41591b55913c7717fab281d818c1fed7d80e81460405160405180910390a250565b6000611f5984846117f3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611fd35781811015611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90614f5d565b60405180910390fd5b611fd28484848403611a6c565b5b50505050565b611fe4838383613669565b505050565b611ffd82600761214490919063ffffffff16565b1561203d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203490614fc9565b60405180910390fd5b60008111612080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790615035565b60405180910390fd5b6120948260076139ef90919063ffffffff16565b5080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600a60008282546120eb9190614617565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167f918584c21fe4a093f5014c0dabaed3e43b642781e27984aef122cae8245fbb23826040516121389190613f67565b60405180910390a25050565b600061216c836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613a1f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036121e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121da906150a1565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015612293573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b791906150d6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f9061514f565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612397573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123bb91906150d6565b90508173ffffffffffffffffffffffffffffffffffffffff1663e6a4390530836040518363ffffffff1660e01b81526004016123f892919061516f565b602060405180830381865afa158015612415573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243991906150d6565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361258e578173ffffffffffffffffffffffffffffffffffffffff1663c9c6539630836040518363ffffffff1660e01b815260040161250a92919061516f565b6020604051808303816000875af1158015612529573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254d91906150d6565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361261f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612616906151e4565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fca394f95d8dbf1e8b2e76b9a8da90cacce1da85181a65508dab13212dc1df53b60405160405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272890615276565b60405180910390fd5b61273d82600083613a42565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90615308565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128769190613f67565b60405180910390a361288a83600084613a52565b505050565b60008083036128a15760009050612a3e565b6000600a54036128b45760009050612a3e565b6000806128c16007613a57565b905060005b81811015612a365760006128e4826007613a6c90919063ffffffff16565b905060006001846128f59190614e71565b831461295857600a54600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054896129499190614dcf565b6129539190614e40565b612965565b84886129649190614e71565b5b9050861561297d57612978308383611fd9565b6129c5565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156129c3573d6000803e3d6000fd5b505b8173ffffffffffffffffffffffffffffffffffffffff167f06c5efeff5c320943d265dc4e5f1af95ad523555ce0c1957e367dda5514572df82604051612a0b9190613f67565b60405180910390a28085612a1f9190614617565b945050508080612a2e90615328565b9150506128c6565b506001925050505b92915050565b6107d061ffff16816020015161ffff161115612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c906153bc565b60405180910390fd5b6107d061ffff16816040015161ffff161115612ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612add90615428565b60405180910390fd5b6107d061ffff16816060015161ffff161115612b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2e90615494565b60405180910390fd5b60008160c001518260a001518360800151612b5291906154b4565b612b5c91906154b4565b905060008161ffff161480612b7a575061271061ffff168161ffff16145b612bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb090615536565b60405180910390fd5b81600f60008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548161ffff021916908361ffff16021790555060408201518160000160036101000a81548161ffff021916908361ffff16021790555060608201518160000160056101000a81548161ffff021916908361ffff16021790555060808201518160000160076101000a81548161ffff021916908361ffff16021790555060a08201518160000160096101000a81548161ffff021916908361ffff16021790555060c082015181600001600b6101000a81548161ffff021916908361ffff1602179055509050507ff34b49a91d91598b7774795175736ebf4db4fa5a4edf72772cf50fb27c135efd82604051612ce09190615602565b60405180910390a15050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612dc583612dc0611a64565b6117f3565b905081811015612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e019061568f565b60405180910390fd5b612e1e83612e16611a64565b848403611a6c565b612e2883836126c2565b505050565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb6906149dd565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f3499bfcf9673677ba552f3fe2ea274ec7e6246da31c3c87e115b45a9b0db2efb82604051612f5c9190614155565b60405180910390a25050565b6000811480612f9657506103e86005612f7f610d49565b612f899190614dcf565b612f939190614e40565b81115b612fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fcc906156fb565b60405180910390fd5b806005819055507f0271c3ca991d8fa13fc3df55bfd888e9347a178a375ef6e0f63afa9639d144f48160405161300b9190613f67565b60405180910390a150565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036130a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309f906149dd565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f902b2ea0acdec5a260e398590d055fe29bd61ef5dd41e45db54a4cd98d5569e0826040516131459190614155565b60405180910390a25050565b61316582600761214490919063ffffffff16565b6131a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319b90614ef1565b60405180910390fd5b600081116131e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131de90615035565b60405180910390fd5b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080600a600082825461323d9190614e71565b9250508190555081600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600a600082825461329a9190614617565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167fd350c3685bdab1285c0b97ffb6e96d96ed0ad4578a135c38250e771e7cb831aa82846040516132e992919061571b565b60405180910390a2505050565b6000600267ffffffffffffffff811115613313576133126146bc565b5b6040519080825280602002602001820160405280156133415781602001602082028036833780820191505090505b509050308160008151811061335957613358614844565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613400573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061342491906150d6565b8160018151811061343857613437614844565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061349f30600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611a6c565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430426040518663ffffffff1660e01b8152600401613502959493929190615802565b600060405180830381600087803b15801561351c57600080fd5b505af1158015613530573d6000803e3d6000fd5b50505050505050565b61356630600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a6c565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016135ef96959493929190615897565b60606040518083038185885af115801561360d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613632919061590d565b5050505050565b6000613661836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613a86565b905092915050565b600081116136ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136a3906159ac565b60405180910390fd5b600080600d60149054906101000a900460ff161580156136d85750600d60159054906101000a900460ff165b9050600d60149054906101000a900460ff166138855760006136f986610fcf565b9050600061370686610fcf565b9050600061371388611025565b9050600061372088611025565b905081801561372d575080155b8015613737575082155b80156137915750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b156137b557600f60000160019054906101000a900461ffff1661ffff169550613880565b8080156137c0575083155b80156137ca575082155b156137ee57600f60000160039054906101000a900461ffff1661ffff16955061387f565b811580156137fa575080155b80156138545750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b801561385e575083155b1561387e57600f60000160059054906101000a900461ffff1661ffff1695505b5b5b505050505b8080156138925750600082115b80156138e85750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139135760006138f83061107b565b9050600e54811061391157613910600e546000611c35565b5b505b60008211156139dc57600061271061ffff1683856139319190614dcf565b61393b9190614e40565b90506000818561394b9190614e71565b9050600061271061ffff16600f60000160079054906101000a900461ffff1661ffff16846139799190614dcf565b6139839190614e40565b905060008111156139aa57808361399a9190614e71565b92506139a98861dead83613b9a565b5b60008311156139bf576139be883085613b9a565b5b60008211156139d4576139d3888884613b9a565b5b5050506139e8565b6139e7858585613b9a565b5b5050505050565b6000613a17836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613e10565b905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b613a4d838383613e80565b505050565b505050565b6000613a6582600001613f0d565b9050919050565b6000613a7b8360000183613f1e565b60001c905092915050565b60008083600101600084815260200190815260200160002054905060008114613b8e576000600182613ab89190614e71565b9050600060018660000180549050613ad09190614e71565b9050818114613b3f576000866000018281548110613af157613af0614844565b5b9060005260206000200154905080876000018481548110613b1557613b14614844565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480613b5357613b526159cc565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613b94565b60009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0090615a6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6f90615aff565b60405180910390fd5b613c83838383613a42565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d0090615b91565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613df79190613f67565b60405180910390a3613e0a848484613a52565b50505050565b6000613e1c8383613a1f565b613e75578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613e7a565b600090505b92915050565b828282600060055414158015613e9c5750613e9a82610dbc565b155b15613efa5760055481613eae8461107b565b613eb89190614617565b1115613ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ef090615bfd565b60405180910390fd5b5b613f05868686613f49565b505050505050565b600081600001805490509050919050565b6000826000018281548110613f3657613f35614844565b5b9060005260206000200154905092915050565b505050565b6000819050919050565b613f6181613f4e565b82525050565b6000602082019050613f7c6000830184613f58565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613fbc578082015181840152602081019050613fa1565b60008484015250505050565b6000601f19601f8301169050919050565b6000613fe482613f82565b613fee8185613f8d565b9350613ffe818560208601613f9e565b61400781613fc8565b840191505092915050565b6000602082019050818103600083015261402c8184613fd9565b905092915050565b6000604051905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061406e82614043565b9050919050565b61407e81614063565b811461408957600080fd5b50565b60008135905061409b81614075565b92915050565b6000602082840312156140b7576140b661403e565b5b60006140c58482850161408c565b91505092915050565b6140d781613f4e565b81146140e257600080fd5b50565b6000813590506140f4816140ce565b92915050565b600080604083850312156141115761411061403e565b5b600061411f8582860161408c565b9250506020614130858286016140e5565b9150509250929050565b60008115159050919050565b61414f8161413a565b82525050565b600060208201905061416a6000830184614146565b92915050565b600080604083850312156141875761418661403e565b5b6000614195858286016140e5565b92505060206141a6858286016140e5565b9150509250929050565b6000602082840312156141c6576141c561403e565b5b60006141d4848285016140e5565b91505092915050565b6000806000606084860312156141f6576141f561403e565b5b60006142048682870161408c565b93505060206142158682870161408c565b9250506040614226868287016140e5565b9150509250925092565b61423981614063565b82525050565b60006020820190506142546000830184614230565b92915050565b600060ff82169050919050565b6142708161425a565b82525050565b600060208201905061428b6000830184614267565b92915050565b61429a8161413a565b81146142a557600080fd5b50565b6000813590506142b781614291565b92915050565b600080604083850312156142d4576142d361403e565b5b60006142e2858286016140e5565b92505060206142f3858286016142a8565b9150509250929050565b600080fd5b600060e08284031215614318576143176142fd565b5b81905092915050565b600060e082840312156143375761433661403e565b5b600061434584828501614302565b91505092915050565b6000602082840312156143645761436361403e565b5b6000614372848285016142a8565b91505092915050565b600061ffff82169050919050565b6143928161437b565b82525050565b600060e0820190506143ad600083018a614146565b6143ba6020830189614389565b6143c76040830188614389565b6143d46060830187614389565b6143e16080830186614389565b6143ee60a0830185614389565b6143fb60c0830184614389565b98975050505050505050565b6000806040838503121561441e5761441d61403e565b5b600061442c8582860161408c565b925050602061443d858286016142a8565b9150509250929050565b600060208201905061445c6000830184614389565b92915050565b6000819050919050565b600061448761448261447d84614043565b614462565b614043565b9050919050565b60006144998261446c565b9050919050565b60006144ab8261448e565b9050919050565b6144bb816144a0565b82525050565b60006020820190506144d660008301846144b2565b92915050565b600080604083850312156144f3576144f261403e565b5b60006145018582860161408c565b92505060206145128582860161408c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061456357607f821691505b6020821081036145765761457561451c565b5b50919050565b7f416d6f756e7420746f6f20686967680000000000000000000000000000000000600082015250565b60006145b2600f83613f8d565b91506145bd8261457c565b602082019050919050565b600060208201905081810360008301526145e1816145a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061462282613f4e565b915061462d83613f4e565b9250828201905080821115614645576146446145e8565b5b92915050565b7f4e6f7420656e6f7567682062616c616e63650000000000000000000000000000600082015250565b6000614681601283613f8d565b915061468c8261464b565b602082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6146f482613fc8565b810181811067ffffffffffffffff82111715614713576147126146bc565b5b80604052505050565b6000614726614034565b905061473282826146eb565b919050565b6147408161437b565b811461474b57600080fd5b50565b60008135905061475d81614737565b92915050565b600060e08284031215614779576147786146b7565b5b61478360e061471c565b90506000614793848285016142a8565b60008301525060206147a78482850161474e565b60208301525060406147bb8482850161474e565b60408301525060606147cf8482850161474e565b60608301525060806147e38482850161474e565b60808301525060a06147f78482850161474e565b60a08301525060c061480b8482850161474e565b60c08301525092915050565b600060e0828403121561482d5761482c61403e565b5b600061483b84828501614763565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f556e6174686f72697a6564000000000000000000000000000000000000000000600082015250565b60006148a9600b83613f8d565b91506148b482614873565b602082019050919050565b600060208201905081810360008301526148d88161489c565b9050919050565b600081905092915050565b50565b60006148fa6000836148df565b9150614905826148ea565b600082019050919050565b600061491b826148ed565b9150819050919050565b7f5472616e73616374696f6e204661696c65642121000000000000000000000000600082015250565b600061495b601483613f8d565b915061496682614925565b602082019050919050565b6000602082019050818103600083015261498a8161494e565b9050919050565b7f416c726561647920736574000000000000000000000000000000000000000000600082015250565b60006149c7600b83613f8d565b91506149d282614991565b602082019050919050565b600060208201905081810360008301526149f6816149ba565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614a59602583613f8d565b9150614a64826149fd565b604082019050919050565b60006020820190508181036000830152614a8881614a4c565b9050919050565b6000604082019050614aa46000830185614230565b614ab16020830184613f58565b9392505050565b600081519050919050565b6000614ace82614ab8565b614ad881856148df565b9350614ae8818560208601613f9e565b80840191505092915050565b6000614b008284614ac3565b915081905092915050565b7f546f6b656e207061796d656e74206661696c6564000000000000000000000000600082015250565b6000614b41601483613f8d565b9150614b4c82614b0b565b602082019050919050565b60006020820190508181036000830152614b7081614b34565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614bd3602683613f8d565b9150614bde82614b77565b604082019050919050565b60006020820190508181036000830152614c0281614bc6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c3f602083613f8d565b9150614c4a82614c09565b602082019050919050565b60006020820190508181036000830152614c6e81614c32565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614cd1602483613f8d565b9150614cdc82614c75565b604082019050919050565b60006020820190508181036000830152614d0081614cc4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d63602283613f8d565b9150614d6e82614d07565b604082019050919050565b60006020820190508181036000830152614d9281614d56565b9050919050565b6000614da48261437b565b9150614daf8361437b565b9250828203905061ffff811115614dc957614dc86145e8565b5b92915050565b6000614dda82613f4e565b9150614de583613f4e565b9250828202614df381613f4e565b91508282048414831517614e0a57614e096145e8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e4b82613f4e565b9150614e5683613f4e565b925082614e6657614e65614e11565b5b828204905092915050565b6000614e7c82613f4e565b9150614e8783613f4e565b9250828203905081811115614e9f57614e9e6145e8565b5b92915050565b7f4e6f742066656520636f6c6c6563746f72000000000000000000000000000000600082015250565b6000614edb601183613f8d565b9150614ee682614ea5565b602082019050919050565b60006020820190508181036000830152614f0a81614ece565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614f47601d83613f8d565b9150614f5282614f11565b602082019050919050565b60006020820190508181036000830152614f7681614f3a565b9050919050565b7f416c72656164792066656520636f6c6c6563746f720000000000000000000000600082015250565b6000614fb3601583613f8d565b9150614fbe82614f7d565b602082019050919050565b60006020820190508181036000830152614fe281614fa6565b9050919050565b7f496e76616c696420736861726500000000000000000000000000000000000000600082015250565b600061501f600d83613f8d565b915061502a82614fe9565b602082019050919050565b6000602082019050818103600083015261504e81615012565b9050919050565b7f496e76616c696420726f75746572000000000000000000000000000000000000600082015250565b600061508b600e83613f8d565b915061509682615055565b602082019050919050565b600060208201905081810360008301526150ba8161507e565b9050919050565b6000815190506150d081614075565b92915050565b6000602082840312156150ec576150eb61403e565b5b60006150fa848285016150c1565b91505092915050565b7f496e76616c696420666163746f72790000000000000000000000000000000000600082015250565b6000615139600f83613f8d565b915061514482615103565b602082019050919050565b600060208201905081810360008301526151688161512c565b9050919050565b60006040820190506151846000830185614230565b6151916020830184614230565b9392505050565b7f496e76616c6964207061697220616464726573732e0000000000000000000000600082015250565b60006151ce601583613f8d565b91506151d982615198565b602082019050919050565b600060208201905081810360008301526151fd816151c1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615260602183613f8d565b915061526b82615204565b604082019050919050565b6000602082019050818103600083015261528f81615253565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006152f2602283613f8d565b91506152fd82615296565b604082019050919050565b60006020820190508181036000830152615321816152e5565b9050919050565b600061533382613f4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615365576153646145e8565b5b600182019050919050565b7f496e76616c696420627579206665650000000000000000000000000000000000600082015250565b60006153a6600f83613f8d565b91506153b182615370565b602082019050919050565b600060208201905081810360008301526153d581615399565b9050919050565b7f496e76616c69642073656c6c2066656500000000000000000000000000000000600082015250565b6000615412601083613f8d565b915061541d826153dc565b602082019050919050565b6000602082019050818103600083015261544181615405565b9050919050565b7f496e76616c6964207472616e7366657220666565000000000000000000000000600082015250565b600061547e601483613f8d565b915061548982615448565b602082019050919050565b600060208201905081810360008301526154ad81615471565b9050919050565b60006154bf8261437b565b91506154ca8361437b565b9250828201905061ffff8111156154e4576154e36145e8565b5b92915050565b7f496e76616c696420666565207368617265000000000000000000000000000000600082015250565b6000615520601183613f8d565b915061552b826154ea565b602082019050919050565b6000602082019050818103600083015261554f81615513565b9050919050565b61555f8161413a565b82525050565b61556e8161437b565b82525050565b60e08201600082015161558a6000850182615556565b50602082015161559d6020850182615565565b5060408201516155b06040850182615565565b5060608201516155c36060850182615565565b5060808201516155d66080850182615565565b5060a08201516155e960a0850182615565565b5060c08201516155fc60c0850182615565565b50505050565b600060e0820190506156176000830184615574565b92915050565b7f45524332304275726e61626c653a206275726e20616d6f756e7420657863656560008201527f647320616c6c6f77616e63650000000000000000000000000000000000000000602082015250565b6000615679602c83613f8d565b91506156848261561d565b604082019050919050565b600060208201905081810360008301526156a88161566c565b9050919050565b7f416d6f756e7420746f6f206c6f77000000000000000000000000000000000000600082015250565b60006156e5600e83613f8d565b91506156f0826156af565b602082019050919050565b60006020820190508181036000830152615714816156d8565b9050919050565b60006040820190506157306000830185613f58565b61573d6020830184613f58565b9392505050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61577981614063565b82525050565b600061578b8383615770565b60208301905092915050565b6000602082019050919050565b60006157af82615744565b6157b9818561574f565b93506157c483615760565b8060005b838110156157f55781516157dc888261577f565b97506157e783615797565b9250506001810190506157c8565b5085935050505092915050565b600060a0820190506158176000830188613f58565b6158246020830187613f58565b818103604083015261583681866157a4565b90506158456060830185614230565b6158526080830184613f58565b9695505050505050565b6000819050919050565b600061588161587c6158778461585c565b614462565b613f4e565b9050919050565b61589181615866565b82525050565b600060c0820190506158ac6000830189614230565b6158b96020830188613f58565b6158c66040830187615888565b6158d36060830186615888565b6158e06080830185614230565b6158ed60a0830184613f58565b979650505050505050565b600081519050615907816140ce565b92915050565b6000806000606084860312156159265761592561403e565b5b6000615934868287016158f8565b9350506020615945868287016158f8565b9250506040615956868287016158f8565b9150509250925092565b7f5472616e73666572203c3d203000000000000000000000000000000000000000600082015250565b6000615996600d83613f8d565b91506159a182615960565b602082019050919050565b600060208201905081810360008301526159c581615989565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615a57602583613f8d565b9150615a62826159fb565b604082019050919050565b60006020820190508181036000830152615a8681615a4a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615ae9602383613f8d565b9150615af482615a8d565b604082019050919050565b60006020820190508181036000830152615b1881615adc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615b7b602683613f8d565b9150615b8682615b1f565b604082019050919050565b60006020820190508181036000830152615baa81615b6e565b9050919050565b7f57616c6c65742065786365656473206d61780000000000000000000000000000600082015250565b6000615be7601283613f8d565b9150615bf282615bb1565b602082019050919050565b60006020820190508181036000830152615c1681615bda565b905091905056fea2646970667358221220e481454c1531d9aff0df5d5500942c0e6ed74257abe205a58d4685522734578864736f6c63430008140033
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c80637346643511610175578063adf18693116100dc578063dd62ed3e11610095578063f2fde38b1161006f578063f2fde38b14610b29578063f4232d2514610b52578063f725101d14610b7b578063fccc281314610ba4576102d4565b8063dd62ed3e14610a98578063e55096b014610ad5578063e63a391f14610afe576102d4565b8063adf186931461099c578063b3c6e9ee146109c5578063bc063e1a146109f0578063bd82394314610a1b578063c31c9c0714610a44578063cea9d26f14610a6f576102d4565b806394b8a7031161012e57806394b8a7031461085e57806395d89b411461089b57806398c47e8c146108c65780639b61f1d0146108f7578063a457c2d714610922578063a9059cbb1461095f576102d4565b8063734664351461077457806379cc67901461078b5780637a8baf52146107b45780637f5bbb2c146107df5780638da5cb5b14610808578063905358fe14610833576102d4565b80633502628a116102345780634569c445116101ed5780636f741f2a116101c75780636f741f2a146106ba57806370a08231146106f7578063715018a61461073457806372bc55831461074b576102d4565b80634569c4451461062b578063490e5147146106545780634fbee1931461067d576102d4565b80633502628a1461050b5780633935ebf914610534578063395093511461055f5780633b90b9bf1461059c57806341273657146105d957806342966c6814610602576102d4565b806318160ddd1161028657806318160ddd146103e75780631fa67b4d1461041257806323b872dd1461043b57806326991cc814610478578063269f534c146104a3578063313ce567146104e0576102d4565b806301a6c43b146102d957806306fdde0314610304578063093ed8ba1461032f578063095ea7b3146103585780630a4e42ef146103955780630f569dad146103be576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b506102ee610bcf565b6040516102fb9190613f67565b60405180910390f35b34801561031057600080fd5b50610319610bd5565b6040516103269190614012565b60405180910390f35b34801561033b57600080fd5b50610356600480360381019061035191906140a1565b610c67565b005b34801561036457600080fd5b5061037f600480360381019061037a91906140fa565b610cb3565b60405161038c9190614155565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b79190614170565b610cd6565b005b3480156103ca57600080fd5b506103e560048036038101906103e091906141b0565b610d37565b005b3480156103f357600080fd5b506103fc610d49565b6040516104099190613f67565b60405180910390f35b34801561041e57600080fd5b50610439600480360381019061043491906140a1565b610d53565b005b34801561044757600080fd5b50610462600480360381019061045d91906141dd565b610d67565b60405161046f9190614155565b60405180910390f35b34801561048457600080fd5b5061048d610d96565b60405161049a919061423f565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c591906140a1565b610dbc565b6040516104d79190614155565b60405180910390f35b3480156104ec57600080fd5b506104f5610e12565b6040516105029190614276565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d91906140fa565b610e3a565b005b34801561054057600080fd5b50610549610e50565b604051610556919061423f565b60405180910390f35b34801561056b57600080fd5b50610586600480360381019061058191906140fa565b610e76565b6040516105939190614155565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be91906140a1565b610ead565b6040516105d09190614155565b60405180910390f35b3480156105e557600080fd5b5061060060048036038101906105fb91906140a1565b610eca565b005b34801561060e57600080fd5b50610629600480360381019061062491906141b0565b610ede565b005b34801561063757600080fd5b50610652600480360381019061064d91906142bd565b610efa565b005b34801561066057600080fd5b5061067b60048036038101906106769190614321565b610fab565b005b34801561068957600080fd5b506106a4600480360381019061069f91906140a1565b610fcf565b6040516106b19190614155565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc91906140a1565b611025565b6040516106ee9190614155565b60405180910390f35b34801561070357600080fd5b5061071e600480360381019061071991906140a1565b61107b565b60405161072b9190613f67565b60405180910390f35b34801561074057600080fd5b506107496110c3565b005b34801561075757600080fd5b50610772600480360381019061076d91906140a1565b6110d7565b005b34801561078057600080fd5b50610789611123565b005b34801561079757600080fd5b506107b260048036038101906107ad91906140fa565b6112be565b005b3480156107c057600080fd5b506107c96112d4565b6040516107d69190613f67565b60405180910390f35b3480156107eb57600080fd5b506108066004803603810190610801919061434e565b6112da565b005b34801561081457600080fd5b5061081d611354565b60405161082a919061423f565b60405180910390f35b34801561083f57600080fd5b5061084861137e565b6040516108559190613f67565b60405180910390f35b34801561086a57600080fd5b50610885600480360381019061088091906140a1565b61138f565b6040516108929190613f67565b60405180910390f35b3480156108a757600080fd5b506108b06113d8565b6040516108bd9190614012565b60405180910390f35b3480156108d257600080fd5b506108db61146a565b6040516108ee9796959493929190614398565b60405180910390f35b34801561090357600080fd5b5061090c6114fb565b6040516109199190614155565b60405180910390f35b34801561092e57600080fd5b50610949600480360381019061094491906140fa565b61150e565b6040516109569190614155565b60405180910390f35b34801561096b57600080fd5b50610986600480360381019061098191906140fa565b611585565b6040516109939190614155565b60405180910390f35b3480156109a857600080fd5b506109c360048036038101906109be9190614407565b6115a8565b005b3480156109d157600080fd5b506109da6115be565b6040516109e79190613f67565b60405180910390f35b3480156109fc57600080fd5b50610a056115c4565b604051610a129190614447565b60405180910390f35b348015610a2757600080fd5b50610a426004803603810190610a3d91906141b0565b6115ca565b005b348015610a5057600080fd5b50610a596115de565b604051610a6691906144c1565b60405180910390f35b348015610a7b57600080fd5b50610a966004803603810190610a9191906141dd565b611604565b005b348015610aa457600080fd5b50610abf6004803603810190610aba91906144dc565b6117f3565b604051610acc9190613f67565b60405180910390f35b348015610ae157600080fd5b50610afc6004803603810190610af79190614407565b61187a565b005b348015610b0a57600080fd5b50610b13611890565b604051610b209190614447565b60405180910390f35b348015610b3557600080fd5b50610b506004803603810190610b4b91906140a1565b611896565b005b348015610b5e57600080fd5b50610b796004803603810190610b7491906140fa565b611919565b005b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614407565b61192f565b005b348015610bb057600080fd5b50610bb96119e0565b604051610bc6919061423f565b60405180910390f35b600e5481565b606060038054610be49061454b565b80601f0160208091040260200160405190810160405280929190818152602001828054610c109061454b565b8015610c5d5780601f10610c3257610100808354040283529160200191610c5d565b820191906000526020600020905b815481529060010190602001808311610c4057829003601f168201915b5050505050905090565b610c6f6119e6565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610cbe611a64565b9050610ccb818585611a6c565b600191505092915050565b610cde6119e6565b610ce73061107b565b821115610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906145c8565b60405180910390fd5b610d338282611c35565b5050565b610d3f6119e6565b80600e8190555050565b6000600254905090565b610d5b6119e6565b610d6481611e04565b50565b600080610d72611a64565b9050610d7f858285611f4d565b610d8a858585611fd9565b60019150509392505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60007f0000000000000000000000000000000000000000000000000000000000000012905090565b610e426119e6565b610e4c8282611fe9565b5050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610e81611a64565b9050610ea2818585610e9385896117f3565b610e9d9190614617565b611a6c565b600191505092915050565b6000610ec382600761214490919063ffffffff16565b9050919050565b610ed26119e6565b610edb81612174565b50565b610ee66119e6565b610ef7610ef1611a64565b826126c2565b50565b610f026119e6565b8015610f585781610f123061107b565b1015610f53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4a90614697565b60405180910390fd5b610f9c565b81471015610f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9290614697565b60405180910390fd5b5b610fa6828261288f565b505050565b610fb36119e6565b610fcc81803603810190610fc79190614817565b612a44565b50565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110cb6119e6565b6110d56000612cec565b565b6110df6119e6565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601260008154811061113857611137614844565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c7906148bf565b60405180910390fd5b600060126000815481106111e7576111e6614844565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161123590614910565b60006040518083038185875af1925050503d8060008114611272576040519150601f19603f3d011682016040523d82523d6000602084013e611277565b606091505b50509050806112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290614971565b60405180910390fd5b50565b6112c66119e6565b6112d08282612db2565b5050565b60055481565b6112e26119e6565b801515600d60159054906101000a900460ff16151503611337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132e906149dd565b60405180910390fd5b80600d60156101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6c01431e0fae6d7217caa000000081565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546113e79061454b565b80601f01602080910402602001604051908101604052809291908181526020018280546114139061454b565b80156114605780601f1061143557610100808354040283529160200191611460565b820191906000526020600020905b81548152906001019060200180831161144357829003601f168201915b5050505050905090565b600f8060000160009054906101000a900460ff16908060000160019054906101000a900461ffff16908060000160039054906101000a900461ffff16908060000160059054906101000a900461ffff16908060000160079054906101000a900461ffff16908060000160099054906101000a900461ffff169080600001600b9054906101000a900461ffff16905087565b600d60159054906101000a900460ff1681565b600080611519611a64565b9050600061152782866117f3565b90508381101561156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390614a6f565b60405180910390fd5b6115798286868403611a6c565b60019250505092915050565b600080611590611a64565b905061159d818585611fd9565b600191505092915050565b6115b06119e6565b6115ba8282612e2d565b5050565b600a5481565b6107d081565b6115d26119e6565b6115db81612f68565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260008154811061161957611618614844565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a8906148bf565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff1683836040516024016116dd929190614a8f565b6040516020818303038152906040527fa9059cbb000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516117679190614af4565b6000604051808303816000865af19150503d80600081146117a4576040519150601f19603f3d011682016040523d82523d6000602084013e6117a9565b606091505b50509050806117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490614b57565b60405180910390fd5b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6118826119e6565b61188c8282613016565b5050565b61271081565b61189e6119e6565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190490614be9565b60405180910390fd5b61191681612cec565b50565b6119216119e6565b61192b8282613151565b5050565b6119376119e6565b80601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f46e542c7dcc512f9d4c5ef6470efcb6729025d935367e1c2c8dc49d8e35eaa88826040516119d49190614155565b60405180910390a25050565b61dead81565b6119ee611a64565b73ffffffffffffffffffffffffffffffffffffffff16611a0c611354565b73ffffffffffffffffffffffffffffffffffffffff1614611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990614c55565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290614ce7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190614d79565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c289190613f67565b60405180910390a3505050565b6001600d60146101000a81548160ff0219169083151502179055506000611c5b3061107b565b9050828110611de3576000600f60000160079054906101000a900461ffff16612710611c879190614d99565b61ffff16600f60000160099054906101000a900461ffff1661ffff1685611cae9190614dcf565b611cb89190614e40565b90506000600282611cc99190614e40565b905060008286611cd99190614e71565b905060008284611ce99190614e71565b9050600f60000160009054906101000a900460ff16611d11578181611d0e9190614617565b90505b6000811115611da8576000611d47600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661107b565b03611d56575050505050611de5565b6000479050611d6582886132f6565b60008147611d739190614e71565b90506000838683611d849190614dcf565b611d8e9190614e40565b90506000811115611da457611da38682613539565b5b5050505b600f60000160009054906101000a900460ff1615611dd157611dcb82600161288f565b50611dde565b611ddc47600061288f565b505b505050505b505b6000600d60146101000a81548160ff0219169083151502179055505050565b611e1881600761214490919063ffffffff16565b611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90614ef1565b60405180910390fd5b611e6b81600761363990919063ffffffff16565b50600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600a6000828254611ebd9190614e71565b92505081905550600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090558073ffffffffffffffffffffffffffffffffffffffff167f904316769e154356a5e4aad5d41591b55913c7717fab281d818c1fed7d80e81460405160405180910390a250565b6000611f5984846117f3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611fd35781811015611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90614f5d565b60405180910390fd5b611fd28484848403611a6c565b5b50505050565b611fe4838383613669565b505050565b611ffd82600761214490919063ffffffff16565b1561203d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203490614fc9565b60405180910390fd5b60008111612080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790615035565b60405180910390fd5b6120948260076139ef90919063ffffffff16565b5080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600a60008282546120eb9190614617565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167f918584c21fe4a093f5014c0dabaed3e43b642781e27984aef122cae8245fbb23826040516121389190613f67565b60405180910390a25050565b600061216c836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613a1f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036121e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121da906150a1565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015612293573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b791906150d6565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f9061514f565b60405180910390fd5b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612397573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123bb91906150d6565b90508173ffffffffffffffffffffffffffffffffffffffff1663e6a4390530836040518363ffffffff1660e01b81526004016123f892919061516f565b602060405180830381865afa158015612415573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061243991906150d6565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361258e578173ffffffffffffffffffffffffffffffffffffffff1663c9c6539630836040518363ffffffff1660e01b815260040161250a92919061516f565b6020604051808303816000875af1158015612529573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254d91906150d6565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361261f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612616906151e4565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fca394f95d8dbf1e8b2e76b9a8da90cacce1da85181a65508dab13212dc1df53b60405160405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272890615276565b60405180910390fd5b61273d82600083613a42565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90615308565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128769190613f67565b60405180910390a361288a83600084613a52565b505050565b60008083036128a15760009050612a3e565b6000600a54036128b45760009050612a3e565b6000806128c16007613a57565b905060005b81811015612a365760006128e4826007613a6c90919063ffffffff16565b905060006001846128f59190614e71565b831461295857600a54600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054896129499190614dcf565b6129539190614e40565b612965565b84886129649190614e71565b5b9050861561297d57612978308383611fd9565b6129c5565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156129c3573d6000803e3d6000fd5b505b8173ffffffffffffffffffffffffffffffffffffffff167f06c5efeff5c320943d265dc4e5f1af95ad523555ce0c1957e367dda5514572df82604051612a0b9190613f67565b60405180910390a28085612a1f9190614617565b945050508080612a2e90615328565b9150506128c6565b506001925050505b92915050565b6107d061ffff16816020015161ffff161115612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8c906153bc565b60405180910390fd5b6107d061ffff16816040015161ffff161115612ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612add90615428565b60405180910390fd5b6107d061ffff16816060015161ffff161115612b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2e90615494565b60405180910390fd5b60008160c001518260a001518360800151612b5291906154b4565b612b5c91906154b4565b905060008161ffff161480612b7a575061271061ffff168161ffff16145b612bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb090615536565b60405180910390fd5b81600f60008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548161ffff021916908361ffff16021790555060408201518160000160036101000a81548161ffff021916908361ffff16021790555060608201518160000160056101000a81548161ffff021916908361ffff16021790555060808201518160000160076101000a81548161ffff021916908361ffff16021790555060a08201518160000160096101000a81548161ffff021916908361ffff16021790555060c082015181600001600b6101000a81548161ffff021916908361ffff1602179055509050507ff34b49a91d91598b7774795175736ebf4db4fa5a4edf72772cf50fb27c135efd82604051612ce09190615602565b60405180910390a15050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612dc583612dc0611a64565b6117f3565b905081811015612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e019061568f565b60405180910390fd5b612e1e83612e16611a64565b848403611a6c565b612e2883836126c2565b505050565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503612ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb6906149dd565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f3499bfcf9673677ba552f3fe2ea274ec7e6246da31c3c87e115b45a9b0db2efb82604051612f5c9190614155565b60405180910390a25050565b6000811480612f9657506103e86005612f7f610d49565b612f899190614dcf565b612f939190614e40565b81115b612fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fcc906156fb565b60405180910390fd5b806005819055507f0271c3ca991d8fa13fc3df55bfd888e9347a178a375ef6e0f63afa9639d144f48160405161300b9190613f67565b60405180910390a150565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036130a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309f906149dd565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f902b2ea0acdec5a260e398590d055fe29bd61ef5dd41e45db54a4cd98d5569e0826040516131459190614155565b60405180910390a25050565b61316582600761214490919063ffffffff16565b6131a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319b90614ef1565b60405180910390fd5b600081116131e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131de90615035565b60405180910390fd5b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080600a600082825461323d9190614e71565b9250508190555081600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600a600082825461329a9190614617565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167fd350c3685bdab1285c0b97ffb6e96d96ed0ad4578a135c38250e771e7cb831aa82846040516132e992919061571b565b60405180910390a2505050565b6000600267ffffffffffffffff811115613313576133126146bc565b5b6040519080825280602002602001820160405280156133415781602001602082028036833780820191505090505b509050308160008151811061335957613358614844565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613400573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061342491906150d6565b8160018151811061343857613437614844565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061349f30600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685611a6c565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430426040518663ffffffff1660e01b8152600401613502959493929190615802565b600060405180830381600087803b15801561351c57600080fd5b505af1158015613530573d6000803e3d6000fd5b50505050505050565b61356630600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a6c565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016135ef96959493929190615897565b60606040518083038185885af115801561360d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613632919061590d565b5050505050565b6000613661836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613a86565b905092915050565b600081116136ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136a3906159ac565b60405180910390fd5b600080600d60149054906101000a900460ff161580156136d85750600d60159054906101000a900460ff165b9050600d60149054906101000a900460ff166138855760006136f986610fcf565b9050600061370686610fcf565b9050600061371388611025565b9050600061372088611025565b905081801561372d575080155b8015613737575082155b80156137915750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b156137b557600f60000160019054906101000a900461ffff1661ffff169550613880565b8080156137c0575083155b80156137ca575082155b156137ee57600f60000160039054906101000a900461ffff1661ffff16955061387f565b811580156137fa575080155b80156138545750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b801561385e575083155b1561387e57600f60000160059054906101000a900461ffff1661ffff1695505b5b5b505050505b8080156138925750600082115b80156138e85750601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156139135760006138f83061107b565b9050600e54811061391157613910600e546000611c35565b5b505b60008211156139dc57600061271061ffff1683856139319190614dcf565b61393b9190614e40565b90506000818561394b9190614e71565b9050600061271061ffff16600f60000160079054906101000a900461ffff1661ffff16846139799190614dcf565b6139839190614e40565b905060008111156139aa57808361399a9190614e71565b92506139a98861dead83613b9a565b5b60008311156139bf576139be883085613b9a565b5b60008211156139d4576139d3888884613b9a565b5b5050506139e8565b6139e7858585613b9a565b5b5050505050565b6000613a17836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613e10565b905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b613a4d838383613e80565b505050565b505050565b6000613a6582600001613f0d565b9050919050565b6000613a7b8360000183613f1e565b60001c905092915050565b60008083600101600084815260200190815260200160002054905060008114613b8e576000600182613ab89190614e71565b9050600060018660000180549050613ad09190614e71565b9050818114613b3f576000866000018281548110613af157613af0614844565b5b9060005260206000200154905080876000018481548110613b1557613b14614844565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480613b5357613b526159cc565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613b94565b60009150505b92915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0090615a6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c6f90615aff565b60405180910390fd5b613c83838383613a42565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d0090615b91565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613df79190613f67565b60405180910390a3613e0a848484613a52565b50505050565b6000613e1c8383613a1f565b613e75578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613e7a565b600090505b92915050565b828282600060055414158015613e9c5750613e9a82610dbc565b155b15613efa5760055481613eae8461107b565b613eb89190614617565b1115613ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ef090615bfd565b60405180910390fd5b5b613f05868686613f49565b505050505050565b600081600001805490509050919050565b6000826000018281548110613f3657613f35614844565b5b9060005260206000200154905092915050565b505050565b6000819050919050565b613f6181613f4e565b82525050565b6000602082019050613f7c6000830184613f58565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613fbc578082015181840152602081019050613fa1565b60008484015250505050565b6000601f19601f8301169050919050565b6000613fe482613f82565b613fee8185613f8d565b9350613ffe818560208601613f9e565b61400781613fc8565b840191505092915050565b6000602082019050818103600083015261402c8184613fd9565b905092915050565b6000604051905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061406e82614043565b9050919050565b61407e81614063565b811461408957600080fd5b50565b60008135905061409b81614075565b92915050565b6000602082840312156140b7576140b661403e565b5b60006140c58482850161408c565b91505092915050565b6140d781613f4e565b81146140e257600080fd5b50565b6000813590506140f4816140ce565b92915050565b600080604083850312156141115761411061403e565b5b600061411f8582860161408c565b9250506020614130858286016140e5565b9150509250929050565b60008115159050919050565b61414f8161413a565b82525050565b600060208201905061416a6000830184614146565b92915050565b600080604083850312156141875761418661403e565b5b6000614195858286016140e5565b92505060206141a6858286016140e5565b9150509250929050565b6000602082840312156141c6576141c561403e565b5b60006141d4848285016140e5565b91505092915050565b6000806000606084860312156141f6576141f561403e565b5b60006142048682870161408c565b93505060206142158682870161408c565b9250506040614226868287016140e5565b9150509250925092565b61423981614063565b82525050565b60006020820190506142546000830184614230565b92915050565b600060ff82169050919050565b6142708161425a565b82525050565b600060208201905061428b6000830184614267565b92915050565b61429a8161413a565b81146142a557600080fd5b50565b6000813590506142b781614291565b92915050565b600080604083850312156142d4576142d361403e565b5b60006142e2858286016140e5565b92505060206142f3858286016142a8565b9150509250929050565b600080fd5b600060e08284031215614318576143176142fd565b5b81905092915050565b600060e082840312156143375761433661403e565b5b600061434584828501614302565b91505092915050565b6000602082840312156143645761436361403e565b5b6000614372848285016142a8565b91505092915050565b600061ffff82169050919050565b6143928161437b565b82525050565b600060e0820190506143ad600083018a614146565b6143ba6020830189614389565b6143c76040830188614389565b6143d46060830187614389565b6143e16080830186614389565b6143ee60a0830185614389565b6143fb60c0830184614389565b98975050505050505050565b6000806040838503121561441e5761441d61403e565b5b600061442c8582860161408c565b925050602061443d858286016142a8565b9150509250929050565b600060208201905061445c6000830184614389565b92915050565b6000819050919050565b600061448761448261447d84614043565b614462565b614043565b9050919050565b60006144998261446c565b9050919050565b60006144ab8261448e565b9050919050565b6144bb816144a0565b82525050565b60006020820190506144d660008301846144b2565b92915050565b600080604083850312156144f3576144f261403e565b5b60006145018582860161408c565b92505060206145128582860161408c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061456357607f821691505b6020821081036145765761457561451c565b5b50919050565b7f416d6f756e7420746f6f20686967680000000000000000000000000000000000600082015250565b60006145b2600f83613f8d565b91506145bd8261457c565b602082019050919050565b600060208201905081810360008301526145e1816145a5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061462282613f4e565b915061462d83613f4e565b9250828201905080821115614645576146446145e8565b5b92915050565b7f4e6f7420656e6f7567682062616c616e63650000000000000000000000000000600082015250565b6000614681601283613f8d565b915061468c8261464b565b602082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6146f482613fc8565b810181811067ffffffffffffffff82111715614713576147126146bc565b5b80604052505050565b6000614726614034565b905061473282826146eb565b919050565b6147408161437b565b811461474b57600080fd5b50565b60008135905061475d81614737565b92915050565b600060e08284031215614779576147786146b7565b5b61478360e061471c565b90506000614793848285016142a8565b60008301525060206147a78482850161474e565b60208301525060406147bb8482850161474e565b60408301525060606147cf8482850161474e565b60608301525060806147e38482850161474e565b60808301525060a06147f78482850161474e565b60a08301525060c061480b8482850161474e565b60c08301525092915050565b600060e0828403121561482d5761482c61403e565b5b600061483b84828501614763565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f556e6174686f72697a6564000000000000000000000000000000000000000000600082015250565b60006148a9600b83613f8d565b91506148b482614873565b602082019050919050565b600060208201905081810360008301526148d88161489c565b9050919050565b600081905092915050565b50565b60006148fa6000836148df565b9150614905826148ea565b600082019050919050565b600061491b826148ed565b9150819050919050565b7f5472616e73616374696f6e204661696c65642121000000000000000000000000600082015250565b600061495b601483613f8d565b915061496682614925565b602082019050919050565b6000602082019050818103600083015261498a8161494e565b9050919050565b7f416c726561647920736574000000000000000000000000000000000000000000600082015250565b60006149c7600b83613f8d565b91506149d282614991565b602082019050919050565b600060208201905081810360008301526149f6816149ba565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614a59602583613f8d565b9150614a64826149fd565b604082019050919050565b60006020820190508181036000830152614a8881614a4c565b9050919050565b6000604082019050614aa46000830185614230565b614ab16020830184613f58565b9392505050565b600081519050919050565b6000614ace82614ab8565b614ad881856148df565b9350614ae8818560208601613f9e565b80840191505092915050565b6000614b008284614ac3565b915081905092915050565b7f546f6b656e207061796d656e74206661696c6564000000000000000000000000600082015250565b6000614b41601483613f8d565b9150614b4c82614b0b565b602082019050919050565b60006020820190508181036000830152614b7081614b34565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614bd3602683613f8d565b9150614bde82614b77565b604082019050919050565b60006020820190508181036000830152614c0281614bc6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614c3f602083613f8d565b9150614c4a82614c09565b602082019050919050565b60006020820190508181036000830152614c6e81614c32565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614cd1602483613f8d565b9150614cdc82614c75565b604082019050919050565b60006020820190508181036000830152614d0081614cc4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614d63602283613f8d565b9150614d6e82614d07565b604082019050919050565b60006020820190508181036000830152614d9281614d56565b9050919050565b6000614da48261437b565b9150614daf8361437b565b9250828203905061ffff811115614dc957614dc86145e8565b5b92915050565b6000614dda82613f4e565b9150614de583613f4e565b9250828202614df381613f4e565b91508282048414831517614e0a57614e096145e8565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e4b82613f4e565b9150614e5683613f4e565b925082614e6657614e65614e11565b5b828204905092915050565b6000614e7c82613f4e565b9150614e8783613f4e565b9250828203905081811115614e9f57614e9e6145e8565b5b92915050565b7f4e6f742066656520636f6c6c6563746f72000000000000000000000000000000600082015250565b6000614edb601183613f8d565b9150614ee682614ea5565b602082019050919050565b60006020820190508181036000830152614f0a81614ece565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614f47601d83613f8d565b9150614f5282614f11565b602082019050919050565b60006020820190508181036000830152614f7681614f3a565b9050919050565b7f416c72656164792066656520636f6c6c6563746f720000000000000000000000600082015250565b6000614fb3601583613f8d565b9150614fbe82614f7d565b602082019050919050565b60006020820190508181036000830152614fe281614fa6565b9050919050565b7f496e76616c696420736861726500000000000000000000000000000000000000600082015250565b600061501f600d83613f8d565b915061502a82614fe9565b602082019050919050565b6000602082019050818103600083015261504e81615012565b9050919050565b7f496e76616c696420726f75746572000000000000000000000000000000000000600082015250565b600061508b600e83613f8d565b915061509682615055565b602082019050919050565b600060208201905081810360008301526150ba8161507e565b9050919050565b6000815190506150d081614075565b92915050565b6000602082840312156150ec576150eb61403e565b5b60006150fa848285016150c1565b91505092915050565b7f496e76616c696420666163746f72790000000000000000000000000000000000600082015250565b6000615139600f83613f8d565b915061514482615103565b602082019050919050565b600060208201905081810360008301526151688161512c565b9050919050565b60006040820190506151846000830185614230565b6151916020830184614230565b9392505050565b7f496e76616c6964207061697220616464726573732e0000000000000000000000600082015250565b60006151ce601583613f8d565b91506151d982615198565b602082019050919050565b600060208201905081810360008301526151fd816151c1565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615260602183613f8d565b915061526b82615204565b604082019050919050565b6000602082019050818103600083015261528f81615253565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006152f2602283613f8d565b91506152fd82615296565b604082019050919050565b60006020820190508181036000830152615321816152e5565b9050919050565b600061533382613f4e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203615365576153646145e8565b5b600182019050919050565b7f496e76616c696420627579206665650000000000000000000000000000000000600082015250565b60006153a6600f83613f8d565b91506153b182615370565b602082019050919050565b600060208201905081810360008301526153d581615399565b9050919050565b7f496e76616c69642073656c6c2066656500000000000000000000000000000000600082015250565b6000615412601083613f8d565b915061541d826153dc565b602082019050919050565b6000602082019050818103600083015261544181615405565b9050919050565b7f496e76616c6964207472616e7366657220666565000000000000000000000000600082015250565b600061547e601483613f8d565b915061548982615448565b602082019050919050565b600060208201905081810360008301526154ad81615471565b9050919050565b60006154bf8261437b565b91506154ca8361437b565b9250828201905061ffff8111156154e4576154e36145e8565b5b92915050565b7f496e76616c696420666565207368617265000000000000000000000000000000600082015250565b6000615520601183613f8d565b915061552b826154ea565b602082019050919050565b6000602082019050818103600083015261554f81615513565b9050919050565b61555f8161413a565b82525050565b61556e8161437b565b82525050565b60e08201600082015161558a6000850182615556565b50602082015161559d6020850182615565565b5060408201516155b06040850182615565565b5060608201516155c36060850182615565565b5060808201516155d66080850182615565565b5060a08201516155e960a0850182615565565b5060c08201516155fc60c0850182615565565b50505050565b600060e0820190506156176000830184615574565b92915050565b7f45524332304275726e61626c653a206275726e20616d6f756e7420657863656560008201527f647320616c6c6f77616e63650000000000000000000000000000000000000000602082015250565b6000615679602c83613f8d565b91506156848261561d565b604082019050919050565b600060208201905081810360008301526156a88161566c565b9050919050565b7f416d6f756e7420746f6f206c6f77000000000000000000000000000000000000600082015250565b60006156e5600e83613f8d565b91506156f0826156af565b602082019050919050565b60006020820190508181036000830152615714816156d8565b9050919050565b60006040820190506157306000830185613f58565b61573d6020830184613f58565b9392505050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61577981614063565b82525050565b600061578b8383615770565b60208301905092915050565b6000602082019050919050565b60006157af82615744565b6157b9818561574f565b93506157c483615760565b8060005b838110156157f55781516157dc888261577f565b97506157e783615797565b9250506001810190506157c8565b5085935050505092915050565b600060a0820190506158176000830188613f58565b6158246020830187613f58565b818103604083015261583681866157a4565b90506158456060830185614230565b6158526080830184613f58565b9695505050505050565b6000819050919050565b600061588161587c6158778461585c565b614462565b613f4e565b9050919050565b61589181615866565b82525050565b600060c0820190506158ac6000830189614230565b6158b96020830188613f58565b6158c66040830187615888565b6158d36060830186615888565b6158e06080830185614230565b6158ed60a0830184613f58565b979650505050505050565b600081519050615907816140ce565b92915050565b6000806000606084860312156159265761592561403e565b5b6000615934868287016158f8565b9350506020615945868287016158f8565b9250506040615956868287016158f8565b9150509250925092565b7f5472616e73666572203c3d203000000000000000000000000000000000000000600082015250565b6000615996600d83613f8d565b91506159a182615960565b602082019050919050565b600060208201905081810360008301526159c581615989565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615a57602583613f8d565b9150615a62826159fb565b604082019050919050565b60006020820190508181036000830152615a8681615a4a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615ae9602383613f8d565b9150615af482615a8d565b604082019050919050565b60006020820190508181036000830152615b1881615adc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000615b7b602683613f8d565b9150615b8682615b1f565b604082019050919050565b60006020820190508181036000830152615baa81615b6e565b9050919050565b7f57616c6c65742065786365656473206d61780000000000000000000000000000600082015250565b6000615be7601283613f8d565b9150615bf282615bb1565b602082019050919050565b60006020820190508181036000830152615c1681615bda565b905091905056fea2646970667358221220e481454c1531d9aff0df5d5500942c0e6ed74257abe205a58d4685522734578864736f6c63430008140033
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.