Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,210,000,000 ROME
Holders
16
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,445,930 ROMEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ROME
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-02 */ /** */ /** https://medium.com/@Emper0r/magi-de6b04d1904f /** */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; address private _previousOwner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } function owner() public view returns (address) { return _owner; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.10; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract ROME is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public charityWallet; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyCharityFee; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellCharityFee; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForCharity; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Ancient \u2160 Rome", "ROME") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyCharityFee = 0; uint256 _buyMarketingFee = 2; uint256 _buyLiquidityFee = 1; uint256 _buyDevFee = 0; uint256 _sellCharityFee = 0; uint256 _sellMarketingFee = 3; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 1210000000 * 1e18; maxTransactionAmount = 10890000 * 1e18; // 1% from total supply maxTransactionAmountTxn maxWallet = 21780000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 40) / 10000; // 0.4% swap wallet buyCharityFee = _buyCharityFee; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee; sellCharityFee = _sellCharityFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee; charityWallet = address(0x58e14D135500a6a11aC5d24ddfe05a46b0654003); // set as charity wallet marketingWallet = address(0x58e14D135500a6a11aC5d24ddfe05a46b0654003); // set as marketing wallet devWallet = address(0x58e14D135500a6a11aC5d24ddfe05a46b0654003); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _charityFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 8, "Max BuyFee 8%"); buyCharityFee = _charityFee; buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee; } function updateSellFees( uint256 _charityFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { require((_charityFee + _marketingFee + _liquidityFee + _marketingFee) <= 10, "Max SellFee 10%"); sellCharityFee = _charityFee; sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForCharity += (fees * sellCharityFee) / sellTotalFees; tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForCharity += (fees * buyCharityFee) / buyTotalFees; tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForCharity + tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForCharity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); (success, ) = address(marketingWallet).call{value: ethForMarketing}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(charityWallet).call{value: address(this).balance}(""); } }
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":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280601081526020017f416e6369656e7420e285a020526f6d65000000000000000000000000000000008152506040518060400160405280600481526020017f524f4d450000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b5c565b5080600490805190602001906200011b92919062000b5c565b505050600062000130620006bc60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb816001620006c460201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a1919062000c76565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c76565b6040518363ffffffff1660e01b81526004016200034e92919062000cb9565b6020604051808303816000875af11580156200036e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000394919062000c76565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003dc60a0516001620006c460201b60201c565b620003f160a0516001620007c160201b60201c565b6000806002905060006001905060008060006003905060008060006b03e8e3776f749b2afa00000090506a09020c153a233042400000600a819055506a1204182a74466084800000600c8190555061271060288262000451919062000d1f565b6200045d919062000daf565b600b819055508860118190555087601281905550866013819055508560148190555060145460135460125460115462000497919062000de7565b620004a3919062000de7565b620004af919062000de7565b60108190555084601681905550836017819055508260188190555081601981905550601954601854601754601654620004e9919062000de7565b620004f5919062000de7565b62000501919062000de7565b6015819055507358e14d135500a6a11ac5d24ddfe05a46b0654003600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507358e14d135500a6a11ac5d24ddfe05a46b0654003600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507358e14d135500a6a11ac5d24ddfe05a46b0654003600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620006286200061a6200086260201b60201c565b60016200088c60201b60201c565b6200063b3060016200088c60201b60201c565b6200065061dead60016200088c60201b60201c565b62000672620006646200086260201b60201c565b6001620006c460201b60201c565b62000685306001620006c460201b60201c565b6200069a61dead6001620006c460201b60201c565b620006ac3382620009d960201b60201c565b5050505050505050505062001006565b600033905090565b620006d4620006bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000766576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075d9062000ea5565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200089c620006bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200092e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009259062000ea5565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009cd919062000ee4565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a439062000f51565b60405180910390fd5b62000a606000838362000b5260201b60201c565b806002600082825462000a74919062000de7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000acb919062000de7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b32919062000f84565b60405180910390a362000b4e6000838362000b5760201b60201c565b5050565b505050565b505050565b82805462000b6a9062000fd0565b90600052602060002090601f01602090048101928262000b8e576000855562000bda565b82601f1062000ba957805160ff191683800117855562000bda565b8280016001018555821562000bda579182015b8281111562000bd957825182559160200191906001019062000bbc565b5b50905062000be9919062000bed565b5090565b5b8082111562000c0857600081600090555060010162000bee565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c3e8262000c11565b9050919050565b62000c508162000c31565b811462000c5c57600080fd5b50565b60008151905062000c708162000c45565b92915050565b60006020828403121562000c8f5762000c8e62000c0c565b5b600062000c9f8482850162000c5f565b91505092915050565b62000cb38162000c31565b82525050565b600060408201905062000cd0600083018562000ca8565b62000cdf602083018462000ca8565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d2c8262000ce6565b915062000d398362000ce6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d755762000d7462000cf0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dbc8262000ce6565b915062000dc98362000ce6565b92508262000ddc5762000ddb62000d80565b5b828204905092915050565b600062000df48262000ce6565b915062000e018362000ce6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e395762000e3862000cf0565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e8d60208362000e44565b915062000e9a8262000e55565b602082019050919050565b6000602082019050818103600083015262000ec08162000e7e565b9050919050565b60008115159050919050565b62000ede8162000ec7565b82525050565b600060208201905062000efb600083018462000ed3565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f39601f8362000e44565b915062000f468262000f01565b602082019050919050565b6000602082019050818103600083015262000f6c8162000f2a565b9050919050565b62000f7e8162000ce6565b82525050565b600060208201905062000f9b600083018462000f73565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fe957607f821691505b60208210811415620010005762000fff62000fa1565b5b50919050565b60805160a0516152eb62001064600039600081816112b2015281816119f901526129da015260008181610e470152818161298201528181613af001528181613bd101528181613bf801528181613c940152613cbb01526152eb6000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613e23565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613ede565b610e01565b6040516103da9190613f39565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613f63565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613f7e565b610e25565b6040516104429190613f39565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d919061400a565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613f63565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613f63565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613f63565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190614025565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190614052565b610fa9565b6040516105549190613f39565b60405180910390f35b34801561056957600080fd5b506105726110a1565b60405161057f91906140b4565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa91906140cf565b6110a7565b005b3480156105bd57600080fd5b506105c66111f5565b6040516105d39190614152565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613ede565b6111fe565b6040516106109190613f39565b60405180910390f35b34801561062557600080fd5b5061062e6112aa565b60405161063b9190613f63565b60405180910390f35b34801561065057600080fd5b506106596112b0565b60405161066691906140b4565b60405180910390f35b34801561067b57600080fd5b506106846112d4565b6040516106919190613f39565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613f7e565b6112e7565b6040516106ce9190613f39565b60405180910390f35b3480156106e357600080fd5b506106ec61133d565b6040516106f99190613f63565b60405180910390f35b34801561070e57600080fd5b50610717611343565b6040516107249190613f39565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613f7e565b611356565b6040516107619190613f63565b60405180910390f35b34801561077657600080fd5b5061077f61139e565b005b34801561078d57600080fd5b506107966114f6565b6040516107a39190613f39565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190614199565b6115b1565b005b3480156107e157600080fd5b506107ea6116a3565b6040516107f791906140b4565b60405180910390f35b34801561080c57600080fd5b506108156116c9565b60405161082291906140b4565b60405180910390f35b34801561083757600080fd5b506108406116ef565b60405161084d9190613f63565b60405180910390f35b34801561086257600080fd5b5061086b6116f5565b005b34801561087957600080fd5b506108826117c4565b60405161088f91906140b4565b60405180910390f35b3480156108a457600080fd5b506108ad6117ee565b6040516108ba91906140b4565b60405180910390f35b3480156108cf57600080fd5b506108d8611814565b6040516108e59190613f63565b60405180910390f35b3480156108fa57600080fd5b50610915600480360381019061091091906141d9565b61181a565b005b34801561092357600080fd5b5061092c6118ce565b6040516109399190613e23565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190614199565b611960565b005b34801561097757600080fd5b50610980611a94565b60405161098d9190613f63565b60405180910390f35b3480156109a257600080fd5b506109ab611a9a565b6040516109b89190613f63565b60405180910390f35b3480156109cd57600080fd5b506109d6611aa0565b6040516109e39190613f63565b60405180910390f35b3480156109f857600080fd5b50610a01611aa6565b604051610a0e9190613f63565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613ede565b611aac565b604051610a4b9190613f39565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613ede565b611b97565b604051610a889190613f39565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613f7e565b611bb5565b604051610ac59190613f39565b60405180910390f35b348015610ada57600080fd5b50610ae3611bd4565b604051610af09190613f39565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190614199565b611be7565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190614025565b611d27565b005b348015610b5757600080fd5b50610b60611e51565b604051610b6d9190613f39565b60405180910390f35b348015610b8257600080fd5b50610b8b611e64565b604051610b989190613f63565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190614025565b611e6a565b604051610bd59190613f39565b60405180910390f35b348015610bea57600080fd5b50610bf3611fda565b604051610c009190613f63565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190614206565b611fe0565b604051610c3d9190613f63565b60405180910390f35b348015610c5257600080fd5b50610c5b612067565b604051610c689190613f63565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c9391906140cf565b61206d565b005b348015610ca657600080fd5b50610caf6121bb565b604051610cbc9190613f39565b60405180910390f35b348015610cd157600080fd5b50610cda612276565b604051610ce79190613f63565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613f7e565b61227c565b005b348015610d2557600080fd5b50610d2e612443565b604051610d3b9190613f63565b60405180910390f35b348015610d5057600080fd5b50610d59612449565b604051610d669190613f63565b60405180910390f35b606060038054610d7e90614275565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614275565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e61244f565b8484612457565b6001905092915050565b60165481565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601c5481565b601b5481565b610e8761244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d906142f3565b60405180910390fd5b670de0b6b3a76400006103e86001610f2c610e69565b610f369190614342565b610f4091906143cb565b610f4a91906143cb565b811015610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f839061446e565b60405180910390fd5b670de0b6b3a764000081610fa09190614342565b600a8190555050565b6000610fb6848484612622565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061100161244f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890614500565b60405180910390fd5b6110958561108d61244f565b858403612457565b60019150509392505050565b61dead81565b6110af61244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461113e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611135906142f3565b60405180910390fd5b60088183858761114e9190614520565b6111589190614520565b6111629190614520565b11156111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a906145c2565b60405180910390fd5b836011819055508260128190555081601381905550806014819055506014546013546012546011546111d59190614520565b6111df9190614520565b6111e99190614520565b60108190555050505050565b60006012905090565b60006112a061120b61244f565b84846001600061121961244f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129b9190614520565b612457565b6001905092915050565b601a5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d60009054906101000a900460ff1681565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a661244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c906142f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061150061244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611586906142f3565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b6115b961244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f906142f3565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b6116fd61244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461178c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611783906142f3565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b61182261244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a8906142f3565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b6060600480546118dd90614275565b80601f016020809104026020016040519081016040528092919081815260200182805461190990614275565b80156119565780601f1061192b57610100808354040283529160200191611956565b820191906000526020600020905b81548152906001019060200180831161193957829003601f168201915b5050505050905090565b61196861244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906142f3565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90614654565b60405180910390fd5b611a908282613322565b5050565b60145481565b601d5481565b60195481565b60115481565b60008060016000611abb61244f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f906146e6565b60405180910390fd5b611b8c611b8361244f565b85858403612457565b600191505092915050565b6000611bab611ba461244f565b8484612622565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611bef61244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c75906142f3565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d1b9190613f39565b60405180910390a25050565b611d2f61244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db5906142f3565b60405180910390fd5b670de0b6b3a76400006103e86005611dd4610e69565b611dde9190614342565b611de891906143cb565b611df291906143cb565b811015611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90614778565b60405180910390fd5b670de0b6b3a764000081611e489190614342565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b6000611e7461244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa906142f3565b60405180910390fd5b620186a06001611f11610e69565b611f1b9190614342565b611f2591906143cb565b821015611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e9061480a565b60405180910390fd5b6103e86005611f74610e69565b611f7e9190614342565b611f8891906143cb565b821115611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc19061489c565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b61207561244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb906142f3565b60405180910390fd5b600a838385876121149190614520565b61211e9190614520565b6121289190614520565b1115612169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216090614908565b60405180910390fd5b8360168190555082601781905550816018819055508060198190555060195460185460175460165461219b9190614520565b6121a59190614520565b6121af9190614520565b60158190555050505050565b60006121c561244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b906142f3565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60135481565b61228461244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a906142f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237a9061499a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60185481565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be90614a2c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e90614abe565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126159190613f63565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268990614b50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f990614be2565b60405180910390fd5b600081141561271c57612717838360006133c3565b61331d565b600d60009054906101000a900460ff1615612ddf576127396117c4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a757506127776117c4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127e05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128335750600660149054906101000a900460ff16155b15612dde57600d60019054906101000a900460ff1661292d57601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128ed5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61292c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292390614c4e565b60405180910390fd5b5b600f60009054906101000a900460ff1615612af55761294a6117c4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129d157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612af45743600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa690614d06565b60405180910390fd5b43600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b985750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3f57600a54811115612be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd990614d98565b60405180910390fd5b600c54612bee83611356565b82612bf99190614520565b1115612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3190614e04565b60405180910390fd5b612ddd565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ce25750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d3157600a54811115612d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2390614e96565b60405180910390fd5b612ddc565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ddb57600c54612d8e83611356565b82612d999190614520565b1115612dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd190614e04565b60405180910390fd5b5b5b5b5b5b6000612dea30611356565b90506000600b548210159050808015612e0f5750600d60029054906101000a900460ff165b8015612e285750600660149054906101000a900460ff16155b8015612e7e5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed45750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f2a5750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f6e576001600660146101000a81548160ff021916908315150217905550612f52613644565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130245750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561302e57600090505b6000811561330d57602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561309157506000601554115b15613191576130be60646130b060155488613a0590919063ffffffff16565b613a1b90919063ffffffff16565b9050601554601654826130d19190614342565b6130db91906143cb565b601a60008282546130ec9190614520565b92505081905550601554601854826131049190614342565b61310e91906143cb565b601c600082825461311f9190614520565b92505081905550601554601954826131379190614342565b61314191906143cb565b601d60008282546131529190614520565b925050819055506015546017548261316a9190614342565b61317491906143cb565b601b60008282546131859190614520565b925050819055506132e9565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ec57506000601054115b156132e857613219606461320b60105488613a0590919063ffffffff16565b613a1b90919063ffffffff16565b90506010546011548261322c9190614342565b61323691906143cb565b601a60008282546132479190614520565b925050819055506010546013548261325f9190614342565b61326991906143cb565b601c600082825461327a9190614520565b92505081905550601054601454826132929190614342565b61329c91906143cb565b601d60008282546132ad9190614520565b92505081905550601054601254826132c59190614342565b6132cf91906143cb565b601b60008282546132e09190614520565b925050819055505b5b60008111156132fe576132fd8730836133c3565b5b808561330a9190614eb6565b94505b6133188787876133c3565b505050505b505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342a90614b50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349a90614be2565b60405180910390fd5b6134ae838383613a31565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352b90614f5c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135c79190614520565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161362b9190613f63565b60405180910390a361363e848484613a36565b50505050565b600061364f30611356565b90506000601d54601b54601c54601a546136699190614520565b6136739190614520565b61367d9190614520565b905060008083148061368f5750600082145b1561369c57505050613a03565b6014600b546136ab9190614342565b8311156136c4576014600b546136c19190614342565b92505b6000600283601c54866136d79190614342565b6136e191906143cb565b6136eb91906143cb565b905060006137028286613a3b90919063ffffffff16565b9050600047905061371282613a51565b60006137278247613a3b90919063ffffffff16565b9050600061375287613744601a5485613a0590919063ffffffff16565b613a1b90919063ffffffff16565b9050600061377d8861376f601b5486613a0590919063ffffffff16565b613a1b90919063ffffffff16565b905060006137a88961379a601d5487613a0590919063ffffffff16565b613a1b90919063ffffffff16565b90506000818385876137ba9190614eb6565b6137c49190614eb6565b6137ce9190614eb6565b90506000601c819055506000601a819055506000601b819055506000601d81905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161383690614fad565b60006040518083038185875af1925050503d8060008114613873576040519150601f19603f3d011682016040523d82523d6000602084013e613878565b606091505b505080995050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516138c490614fad565b60006040518083038185875af1925050503d8060008114613901576040519150601f19603f3d011682016040523d82523d6000602084013e613906565b606091505b50508099505060008811801561391c5750600081115b156139695761392b8882613c8e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601c5460405161396093929190614fc2565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516139af90614fad565b60006040518083038185875af1925050503d80600081146139ec576040519150601f19603f3d011682016040523d82523d6000602084013e6139f1565b606091505b50508099505050505050505050505050505b565b60008183613a139190614342565b905092915050565b60008183613a2991906143cb565b905092915050565b505050565b505050565b60008183613a499190614eb6565b905092915050565b6000600267ffffffffffffffff811115613a6e57613a6d614ff9565b5b604051908082528060200260200182016040528015613a9c5781602001602082028036833780820191505090505b5090503081600081518110613ab457613ab3615028565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b7d919061506c565b81600181518110613b9157613b90615028565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bf6307f000000000000000000000000000000000000000000000000000000000000000084612457565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c58959493929190615192565b600060405180830381600087803b158015613c7257600080fd5b505af1158015613c86573d6000803e3d6000fd5b505050505050565b613cb9307f000000000000000000000000000000000000000000000000000000000000000084612457565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613d40969594939291906151ec565b60606040518083038185885af1158015613d5e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d839190615262565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dc4578082015181840152602081019050613da9565b83811115613dd3576000848401525b50505050565b6000601f19601f8301169050919050565b6000613df582613d8a565b613dff8185613d95565b9350613e0f818560208601613da6565b613e1881613dd9565b840191505092915050565b60006020820190508181036000830152613e3d8184613dea565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e7582613e4a565b9050919050565b613e8581613e6a565b8114613e9057600080fd5b50565b600081359050613ea281613e7c565b92915050565b6000819050919050565b613ebb81613ea8565b8114613ec657600080fd5b50565b600081359050613ed881613eb2565b92915050565b60008060408385031215613ef557613ef4613e45565b5b6000613f0385828601613e93565b9250506020613f1485828601613ec9565b9150509250929050565b60008115159050919050565b613f3381613f1e565b82525050565b6000602082019050613f4e6000830184613f2a565b92915050565b613f5d81613ea8565b82525050565b6000602082019050613f786000830184613f54565b92915050565b600060208284031215613f9457613f93613e45565b5b6000613fa284828501613e93565b91505092915050565b6000819050919050565b6000613fd0613fcb613fc684613e4a565b613fab565b613e4a565b9050919050565b6000613fe282613fb5565b9050919050565b6000613ff482613fd7565b9050919050565b61400481613fe9565b82525050565b600060208201905061401f6000830184613ffb565b92915050565b60006020828403121561403b5761403a613e45565b5b600061404984828501613ec9565b91505092915050565b60008060006060848603121561406b5761406a613e45565b5b600061407986828701613e93565b935050602061408a86828701613e93565b925050604061409b86828701613ec9565b9150509250925092565b6140ae81613e6a565b82525050565b60006020820190506140c960008301846140a5565b92915050565b600080600080608085870312156140e9576140e8613e45565b5b60006140f787828801613ec9565b945050602061410887828801613ec9565b935050604061411987828801613ec9565b925050606061412a87828801613ec9565b91505092959194509250565b600060ff82169050919050565b61414c81614136565b82525050565b60006020820190506141676000830184614143565b92915050565b61417681613f1e565b811461418157600080fd5b50565b6000813590506141938161416d565b92915050565b600080604083850312156141b0576141af613e45565b5b60006141be85828601613e93565b92505060206141cf85828601614184565b9150509250929050565b6000602082840312156141ef576141ee613e45565b5b60006141fd84828501614184565b91505092915050565b6000806040838503121561421d5761421c613e45565b5b600061422b85828601613e93565b925050602061423c85828601613e93565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061428d57607f821691505b602082108114156142a1576142a0614246565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142dd602083613d95565b91506142e8826142a7565b602082019050919050565b6000602082019050818103600083015261430c816142d0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061434d82613ea8565b915061435883613ea8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561439157614390614313565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143d682613ea8565b91506143e183613ea8565b9250826143f1576143f061439c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614458602f83613d95565b9150614463826143fc565b604082019050919050565b600060208201905081810360008301526144878161444b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006144ea602883613d95565b91506144f58261448e565b604082019050919050565b60006020820190508181036000830152614519816144dd565b9050919050565b600061452b82613ea8565b915061453683613ea8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561456b5761456a614313565b5b828201905092915050565b7f4d61782042757946656520382500000000000000000000000000000000000000600082015250565b60006145ac600d83613d95565b91506145b782614576565b602082019050919050565b600060208201905081810360008301526145db8161459f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061463e603983613d95565b9150614649826145e2565b604082019050919050565b6000602082019050818103600083015261466d81614631565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146d0602583613d95565b91506146db82614674565b604082019050919050565b600060208201905081810360008301526146ff816146c3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614762602483613d95565b915061476d82614706565b604082019050919050565b6000602082019050818103600083015261479181614755565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147f4603583613d95565b91506147ff82614798565b604082019050919050565b60006020820190508181036000830152614823816147e7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614886603483613d95565b91506148918261482a565b604082019050919050565b600060208201905081810360008301526148b581614879565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006148f2600f83613d95565b91506148fd826148bc565b602082019050919050565b60006020820190508181036000830152614921816148e5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614984602683613d95565b915061498f82614928565b604082019050919050565b600060208201905081810360008301526149b381614977565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a16602483613d95565b9150614a21826149ba565b604082019050919050565b60006020820190508181036000830152614a4581614a09565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614aa8602283613d95565b9150614ab382614a4c565b604082019050919050565b60006020820190508181036000830152614ad781614a9b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b3a602583613d95565b9150614b4582614ade565b604082019050919050565b60006020820190508181036000830152614b6981614b2d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bcc602383613d95565b9150614bd782614b70565b604082019050919050565b60006020820190508181036000830152614bfb81614bbf565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614c38601683613d95565b9150614c4382614c02565b602082019050919050565b60006020820190508181036000830152614c6781614c2b565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614cf0604983613d95565b9150614cfb82614c6e565b606082019050919050565b60006020820190508181036000830152614d1f81614ce3565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d82603583613d95565b9150614d8d82614d26565b604082019050919050565b60006020820190508181036000830152614db181614d75565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614dee601383613d95565b9150614df982614db8565b602082019050919050565b60006020820190508181036000830152614e1d81614de1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e80603683613d95565b9150614e8b82614e24565b604082019050919050565b60006020820190508181036000830152614eaf81614e73565b9050919050565b6000614ec182613ea8565b9150614ecc83613ea8565b925082821015614edf57614ede614313565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614f46602683613d95565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b600081905092915050565b50565b6000614f97600083614f7c565b9150614fa282614f87565b600082019050919050565b6000614fb882614f8a565b9150819050919050565b6000606082019050614fd76000830186613f54565b614fe46020830185613f54565b614ff16040830184613f54565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061506681613e7c565b92915050565b60006020828403121561508257615081613e45565b5b600061509084828501615057565b91505092915050565b6000819050919050565b60006150be6150b96150b484615099565b613fab565b613ea8565b9050919050565b6150ce816150a3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61510981613e6a565b82525050565b600061511b8383615100565b60208301905092915050565b6000602082019050919050565b600061513f826150d4565b61514981856150df565b9350615154836150f0565b8060005b8381101561518557815161516c888261510f565b975061517783615127565b925050600181019050615158565b5085935050505092915050565b600060a0820190506151a76000830188613f54565b6151b460208301876150c5565b81810360408301526151c68186615134565b90506151d560608301856140a5565b6151e26080830184613f54565b9695505050505050565b600060c08201905061520160008301896140a5565b61520e6020830188613f54565b61521b60408301876150c5565b61522860608301866150c5565b61523560808301856140a5565b61524260a0830184613f54565b979650505050505050565b60008151905061525c81613eb2565b92915050565b60008060006060848603121561527b5761527a613e45565b5b60006152898682870161524d565b935050602061529a8682870161524d565b92505060406152ab8682870161524d565b915050925092509256fea2646970667358221220e0872408142e1eb50717656a5c48cbd8d2a4c4f9f685e3d66aaf1b39b4651ed864736f6c634300080a0033
Deployed Bytecode
0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613e23565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613ede565b610e01565b6040516103da9190613f39565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613f63565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613f7e565b610e25565b6040516104429190613f39565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d919061400a565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613f63565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613f63565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613f63565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190614025565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190614052565b610fa9565b6040516105549190613f39565b60405180910390f35b34801561056957600080fd5b506105726110a1565b60405161057f91906140b4565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa91906140cf565b6110a7565b005b3480156105bd57600080fd5b506105c66111f5565b6040516105d39190614152565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613ede565b6111fe565b6040516106109190613f39565b60405180910390f35b34801561062557600080fd5b5061062e6112aa565b60405161063b9190613f63565b60405180910390f35b34801561065057600080fd5b506106596112b0565b60405161066691906140b4565b60405180910390f35b34801561067b57600080fd5b506106846112d4565b6040516106919190613f39565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613f7e565b6112e7565b6040516106ce9190613f39565b60405180910390f35b3480156106e357600080fd5b506106ec61133d565b6040516106f99190613f63565b60405180910390f35b34801561070e57600080fd5b50610717611343565b6040516107249190613f39565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613f7e565b611356565b6040516107619190613f63565b60405180910390f35b34801561077657600080fd5b5061077f61139e565b005b34801561078d57600080fd5b506107966114f6565b6040516107a39190613f39565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190614199565b6115b1565b005b3480156107e157600080fd5b506107ea6116a3565b6040516107f791906140b4565b60405180910390f35b34801561080c57600080fd5b506108156116c9565b60405161082291906140b4565b60405180910390f35b34801561083757600080fd5b506108406116ef565b60405161084d9190613f63565b60405180910390f35b34801561086257600080fd5b5061086b6116f5565b005b34801561087957600080fd5b506108826117c4565b60405161088f91906140b4565b60405180910390f35b3480156108a457600080fd5b506108ad6117ee565b6040516108ba91906140b4565b60405180910390f35b3480156108cf57600080fd5b506108d8611814565b6040516108e59190613f63565b60405180910390f35b3480156108fa57600080fd5b50610915600480360381019061091091906141d9565b61181a565b005b34801561092357600080fd5b5061092c6118ce565b6040516109399190613e23565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190614199565b611960565b005b34801561097757600080fd5b50610980611a94565b60405161098d9190613f63565b60405180910390f35b3480156109a257600080fd5b506109ab611a9a565b6040516109b89190613f63565b60405180910390f35b3480156109cd57600080fd5b506109d6611aa0565b6040516109e39190613f63565b60405180910390f35b3480156109f857600080fd5b50610a01611aa6565b604051610a0e9190613f63565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613ede565b611aac565b604051610a4b9190613f39565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613ede565b611b97565b604051610a889190613f39565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613f7e565b611bb5565b604051610ac59190613f39565b60405180910390f35b348015610ada57600080fd5b50610ae3611bd4565b604051610af09190613f39565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190614199565b611be7565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190614025565b611d27565b005b348015610b5757600080fd5b50610b60611e51565b604051610b6d9190613f39565b60405180910390f35b348015610b8257600080fd5b50610b8b611e64565b604051610b989190613f63565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190614025565b611e6a565b604051610bd59190613f39565b60405180910390f35b348015610bea57600080fd5b50610bf3611fda565b604051610c009190613f63565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190614206565b611fe0565b604051610c3d9190613f63565b60405180910390f35b348015610c5257600080fd5b50610c5b612067565b604051610c689190613f63565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c9391906140cf565b61206d565b005b348015610ca657600080fd5b50610caf6121bb565b604051610cbc9190613f39565b60405180910390f35b348015610cd157600080fd5b50610cda612276565b604051610ce79190613f63565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613f7e565b61227c565b005b348015610d2557600080fd5b50610d2e612443565b604051610d3b9190613f63565b60405180910390f35b348015610d5057600080fd5b50610d59612449565b604051610d669190613f63565b60405180910390f35b606060038054610d7e90614275565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa90614275565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e61244f565b8484612457565b6001905092915050565b60165481565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601c5481565b601b5481565b610e8761244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d906142f3565b60405180910390fd5b670de0b6b3a76400006103e86001610f2c610e69565b610f369190614342565b610f4091906143cb565b610f4a91906143cb565b811015610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f839061446e565b60405180910390fd5b670de0b6b3a764000081610fa09190614342565b600a8190555050565b6000610fb6848484612622565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061100161244f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890614500565b60405180910390fd5b6110958561108d61244f565b858403612457565b60019150509392505050565b61dead81565b6110af61244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461113e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611135906142f3565b60405180910390fd5b60088183858761114e9190614520565b6111589190614520565b6111629190614520565b11156111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a906145c2565b60405180910390fd5b836011819055508260128190555081601381905550806014819055506014546013546012546011546111d59190614520565b6111df9190614520565b6111e99190614520565b60108190555050505050565b60006012905090565b60006112a061120b61244f565b84846001600061121961244f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129b9190614520565b612457565b6001905092915050565b601a5481565b7f00000000000000000000000054d2c977e4e523280a30ccbe9a671a25555d9aa481565b600d60009054906101000a900460ff1681565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60155481565b600d60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a661244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142c906142f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061150061244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461158f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611586906142f3565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b6115b961244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163f906142f3565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b6116fd61244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461178c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611783906142f3565b60405180910390fd5b6001600d60016101000a81548160ff0219169083151502179055506001600d60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b61182261244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a8906142f3565b60405180910390fd5b80600d60026101000a81548160ff02191690831515021790555050565b6060600480546118dd90614275565b80601f016020809104026020016040519081016040528092919081815260200182805461190990614275565b80156119565780601f1061192b57610100808354040283529160200191611956565b820191906000526020600020905b81548152906001019060200180831161193957829003601f168201915b5050505050905090565b61196861244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee906142f3565b60405180910390fd5b7f00000000000000000000000054d2c977e4e523280a30ccbe9a671a25555d9aa473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90614654565b60405180910390fd5b611a908282613322565b5050565b60145481565b601d5481565b60195481565b60115481565b60008060016000611abb61244f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6f906146e6565b60405180910390fd5b611b8c611b8361244f565b85858403612457565b600191505092915050565b6000611bab611ba461244f565b8484612622565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b600d60019054906101000a900460ff1681565b611bef61244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c75906142f3565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611d1b9190613f39565b60405180910390a25050565b611d2f61244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db5906142f3565b60405180910390fd5b670de0b6b3a76400006103e86005611dd4610e69565b611dde9190614342565b611de891906143cb565b611df291906143cb565b811015611e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2b90614778565b60405180910390fd5b670de0b6b3a764000081611e489190614342565b600c8190555050565b600f60009054906101000a900460ff1681565b600a5481565b6000611e7461244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efa906142f3565b60405180910390fd5b620186a06001611f11610e69565b611f1b9190614342565b611f2591906143cb565b821015611f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5e9061480a565b60405180910390fd5b6103e86005611f74610e69565b611f7e9190614342565b611f8891906143cb565b821115611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc19061489c565b60405180910390fd5b81600b8190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b61207561244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612104576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fb906142f3565b60405180910390fd5b600a838385876121149190614520565b61211e9190614520565b6121289190614520565b1115612169576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216090614908565b60405180910390fd5b8360168190555082601781905550816018819055508060198190555060195460185460175460165461219b9190614520565b6121a59190614520565b6121af9190614520565b60158190555050505050565b60006121c561244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612254576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224b906142f3565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60135481565b61228461244f565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230a906142f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237a9061499a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60185481565b600c5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124be90614a2c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e90614abe565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126159190613f63565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268990614b50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f990614be2565b60405180910390fd5b600081141561271c57612717838360006133c3565b61331d565b600d60009054906101000a900460ff1615612ddf576127396117c4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a757506127776117c4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127e05750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561281a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156128335750600660149054906101000a900460ff16155b15612dde57600d60019054906101000a900460ff1661292d57601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128ed5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61292c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292390614c4e565b60405180910390fd5b5b600f60009054906101000a900460ff1615612af55761294a6117c4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129d157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2957507f00000000000000000000000054d2c977e4e523280a30ccbe9a671a25555d9aa473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612af45743600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa690614d06565b60405180910390fd5b43600e60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b985750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3f57600a54811115612be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd990614d98565b60405180910390fd5b600c54612bee83611356565b82612bf99190614520565b1115612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3190614e04565b60405180910390fd5b612ddd565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ce25750601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d3157600a54811115612d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2390614e96565b60405180910390fd5b612ddc565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612ddb57600c54612d8e83611356565b82612d999190614520565b1115612dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd190614e04565b60405180910390fd5b5b5b5b5b5b6000612dea30611356565b90506000600b548210159050808015612e0f5750600d60029054906101000a900460ff165b8015612e285750600660149054906101000a900460ff16155b8015612e7e5750602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ed45750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f2a5750601e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f6e576001600660146101000a81548160ff021916908315150217905550612f52613644565b6000600660146101000a81548160ff0219169083151502179055505b6000600660149054906101000a900460ff16159050601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130245750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561302e57600090505b6000811561330d57602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561309157506000601554115b15613191576130be60646130b060155488613a0590919063ffffffff16565b613a1b90919063ffffffff16565b9050601554601654826130d19190614342565b6130db91906143cb565b601a60008282546130ec9190614520565b92505081905550601554601854826131049190614342565b61310e91906143cb565b601c600082825461311f9190614520565b92505081905550601554601954826131379190614342565b61314191906143cb565b601d60008282546131529190614520565b925050819055506015546017548261316a9190614342565b61317491906143cb565b601b60008282546131859190614520565b925050819055506132e9565b602060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131ec57506000601054115b156132e857613219606461320b60105488613a0590919063ffffffff16565b613a1b90919063ffffffff16565b90506010546011548261322c9190614342565b61323691906143cb565b601a60008282546132479190614520565b925050819055506010546013548261325f9190614342565b61326991906143cb565b601c600082825461327a9190614520565b92505081905550601054601454826132929190614342565b61329c91906143cb565b601d60008282546132ad9190614520565b92505081905550601054601254826132c59190614342565b6132cf91906143cb565b601b60008282546132e09190614520565b925050819055505b5b60008111156132fe576132fd8730836133c3565b5b808561330a9190614eb6565b94505b6133188787876133c3565b505050505b505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342a90614b50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349a90614be2565b60405180910390fd5b6134ae838383613a31565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161352b90614f5c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135c79190614520565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161362b9190613f63565b60405180910390a361363e848484613a36565b50505050565b600061364f30611356565b90506000601d54601b54601c54601a546136699190614520565b6136739190614520565b61367d9190614520565b905060008083148061368f5750600082145b1561369c57505050613a03565b6014600b546136ab9190614342565b8311156136c4576014600b546136c19190614342565b92505b6000600283601c54866136d79190614342565b6136e191906143cb565b6136eb91906143cb565b905060006137028286613a3b90919063ffffffff16565b9050600047905061371282613a51565b60006137278247613a3b90919063ffffffff16565b9050600061375287613744601a5485613a0590919063ffffffff16565b613a1b90919063ffffffff16565b9050600061377d8861376f601b5486613a0590919063ffffffff16565b613a1b90919063ffffffff16565b905060006137a88961379a601d5487613a0590919063ffffffff16565b613a1b90919063ffffffff16565b90506000818385876137ba9190614eb6565b6137c49190614eb6565b6137ce9190614eb6565b90506000601c819055506000601a819055506000601b819055506000601d81905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161383690614fad565b60006040518083038185875af1925050503d8060008114613873576040519150601f19603f3d011682016040523d82523d6000602084013e613878565b606091505b505080995050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516138c490614fad565b60006040518083038185875af1925050503d8060008114613901576040519150601f19603f3d011682016040523d82523d6000602084013e613906565b606091505b50508099505060008811801561391c5750600081115b156139695761392b8882613c8e565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601c5460405161396093929190614fc2565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516139af90614fad565b60006040518083038185875af1925050503d80600081146139ec576040519150601f19603f3d011682016040523d82523d6000602084013e6139f1565b606091505b50508099505050505050505050505050505b565b60008183613a139190614342565b905092915050565b60008183613a2991906143cb565b905092915050565b505050565b505050565b60008183613a499190614eb6565b905092915050565b6000600267ffffffffffffffff811115613a6e57613a6d614ff9565b5b604051908082528060200260200182016040528015613a9c5781602001602082028036833780820191505090505b5090503081600081518110613ab457613ab3615028565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b59573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b7d919061506c565b81600181518110613b9157613b90615028565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613bf6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612457565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c58959493929190615192565b600060405180830381600087803b158015613c7257600080fd5b505af1158015613c86573d6000803e3d6000fd5b505050505050565b613cb9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612457565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613d40969594939291906151ec565b60606040518083038185885af1158015613d5e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d839190615262565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dc4578082015181840152602081019050613da9565b83811115613dd3576000848401525b50505050565b6000601f19601f8301169050919050565b6000613df582613d8a565b613dff8185613d95565b9350613e0f818560208601613da6565b613e1881613dd9565b840191505092915050565b60006020820190508181036000830152613e3d8184613dea565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e7582613e4a565b9050919050565b613e8581613e6a565b8114613e9057600080fd5b50565b600081359050613ea281613e7c565b92915050565b6000819050919050565b613ebb81613ea8565b8114613ec657600080fd5b50565b600081359050613ed881613eb2565b92915050565b60008060408385031215613ef557613ef4613e45565b5b6000613f0385828601613e93565b9250506020613f1485828601613ec9565b9150509250929050565b60008115159050919050565b613f3381613f1e565b82525050565b6000602082019050613f4e6000830184613f2a565b92915050565b613f5d81613ea8565b82525050565b6000602082019050613f786000830184613f54565b92915050565b600060208284031215613f9457613f93613e45565b5b6000613fa284828501613e93565b91505092915050565b6000819050919050565b6000613fd0613fcb613fc684613e4a565b613fab565b613e4a565b9050919050565b6000613fe282613fb5565b9050919050565b6000613ff482613fd7565b9050919050565b61400481613fe9565b82525050565b600060208201905061401f6000830184613ffb565b92915050565b60006020828403121561403b5761403a613e45565b5b600061404984828501613ec9565b91505092915050565b60008060006060848603121561406b5761406a613e45565b5b600061407986828701613e93565b935050602061408a86828701613e93565b925050604061409b86828701613ec9565b9150509250925092565b6140ae81613e6a565b82525050565b60006020820190506140c960008301846140a5565b92915050565b600080600080608085870312156140e9576140e8613e45565b5b60006140f787828801613ec9565b945050602061410887828801613ec9565b935050604061411987828801613ec9565b925050606061412a87828801613ec9565b91505092959194509250565b600060ff82169050919050565b61414c81614136565b82525050565b60006020820190506141676000830184614143565b92915050565b61417681613f1e565b811461418157600080fd5b50565b6000813590506141938161416d565b92915050565b600080604083850312156141b0576141af613e45565b5b60006141be85828601613e93565b92505060206141cf85828601614184565b9150509250929050565b6000602082840312156141ef576141ee613e45565b5b60006141fd84828501614184565b91505092915050565b6000806040838503121561421d5761421c613e45565b5b600061422b85828601613e93565b925050602061423c85828601613e93565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061428d57607f821691505b602082108114156142a1576142a0614246565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142dd602083613d95565b91506142e8826142a7565b602082019050919050565b6000602082019050818103600083015261430c816142d0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061434d82613ea8565b915061435883613ea8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561439157614390614313565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143d682613ea8565b91506143e183613ea8565b9250826143f1576143f061439c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614458602f83613d95565b9150614463826143fc565b604082019050919050565b600060208201905081810360008301526144878161444b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006144ea602883613d95565b91506144f58261448e565b604082019050919050565b60006020820190508181036000830152614519816144dd565b9050919050565b600061452b82613ea8565b915061453683613ea8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561456b5761456a614313565b5b828201905092915050565b7f4d61782042757946656520382500000000000000000000000000000000000000600082015250565b60006145ac600d83613d95565b91506145b782614576565b602082019050919050565b600060208201905081810360008301526145db8161459f565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061463e603983613d95565b9150614649826145e2565b604082019050919050565b6000602082019050818103600083015261466d81614631565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146d0602583613d95565b91506146db82614674565b604082019050919050565b600060208201905081810360008301526146ff816146c3565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614762602483613d95565b915061476d82614706565b604082019050919050565b6000602082019050818103600083015261479181614755565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147f4603583613d95565b91506147ff82614798565b604082019050919050565b60006020820190508181036000830152614823816147e7565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614886603483613d95565b91506148918261482a565b604082019050919050565b600060208201905081810360008301526148b581614879565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006148f2600f83613d95565b91506148fd826148bc565b602082019050919050565b60006020820190508181036000830152614921816148e5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614984602683613d95565b915061498f82614928565b604082019050919050565b600060208201905081810360008301526149b381614977565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a16602483613d95565b9150614a21826149ba565b604082019050919050565b60006020820190508181036000830152614a4581614a09565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614aa8602283613d95565b9150614ab382614a4c565b604082019050919050565b60006020820190508181036000830152614ad781614a9b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b3a602583613d95565b9150614b4582614ade565b604082019050919050565b60006020820190508181036000830152614b6981614b2d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bcc602383613d95565b9150614bd782614b70565b604082019050919050565b60006020820190508181036000830152614bfb81614bbf565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614c38601683613d95565b9150614c4382614c02565b602082019050919050565b60006020820190508181036000830152614c6781614c2b565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614cf0604983613d95565b9150614cfb82614c6e565b606082019050919050565b60006020820190508181036000830152614d1f81614ce3565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d82603583613d95565b9150614d8d82614d26565b604082019050919050565b60006020820190508181036000830152614db181614d75565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614dee601383613d95565b9150614df982614db8565b602082019050919050565b60006020820190508181036000830152614e1d81614de1565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e80603683613d95565b9150614e8b82614e24565b604082019050919050565b60006020820190508181036000830152614eaf81614e73565b9050919050565b6000614ec182613ea8565b9150614ecc83613ea8565b925082821015614edf57614ede614313565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614f46602683613d95565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b600081905092915050565b50565b6000614f97600083614f7c565b9150614fa282614f87565b600082019050919050565b6000614fb882614f8a565b9150819050919050565b6000606082019050614fd76000830186613f54565b614fe46020830185613f54565b614ff16040830184613f54565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061506681613e7c565b92915050565b60006020828403121561508257615081613e45565b5b600061509084828501615057565b91505092915050565b6000819050919050565b60006150be6150b96150b484615099565b613fab565b613ea8565b9050919050565b6150ce816150a3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61510981613e6a565b82525050565b600061511b8383615100565b60208301905092915050565b6000602082019050919050565b600061513f826150d4565b61514981856150df565b9350615154836150f0565b8060005b8381101561518557815161516c888261510f565b975061517783615127565b925050600181019050615158565b5085935050505092915050565b600060a0820190506151a76000830188613f54565b6151b460208301876150c5565b81810360408301526151c68186615134565b90506151d560608301856140a5565b6151e26080830184613f54565b9695505050505050565b600060c08201905061520160008301896140a5565b61520e6020830188613f54565b61521b60408301876150c5565b61522860608301866150c5565b61523560808301856140a5565b61524260a0830184613f54565b979650505050505050565b60008151905061525c81613eb2565b92915050565b60008060006060848603121561527b5761527a613e45565b5b60006152898682870161524d565b935050602061529a8682870161524d565b92505060406152ab8682870161524d565b915050925092509256fea2646970667358221220e0872408142e1eb50717656a5c48cbd8d2a4c4f9f685e3d66aaf1b39b4651ed864736f6c634300080a0033
Deployed Bytecode Sourcemap
31811:16513:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8739:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10906:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32848:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33285:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31885:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9859:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33069:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33029;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37685:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11557:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31988:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38604:496;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9701:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12458:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32991:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31943:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32297:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40328:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32816:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32377:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10030:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2382:148;;;;;;;;;;;;;:::i;:::-;;36793:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38233:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32112:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32077:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32709:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36629:112;;;;;;;;;;;;;:::i;:::-;;2168:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32149:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32884:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38496:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8958:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39820:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32783:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33109:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32960:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32674:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13176:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10370:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33506:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32337:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39630:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37968:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32595:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32182:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37180:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32643:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10608:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32224:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39108:514;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36975:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32746:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2538:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32922:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32264:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8739:100;8793:13;8826:5;8819:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8739:100;:::o;10906:169::-;10989:4;11006:39;11015:12;:10;:12::i;:::-;11029:7;11038:6;11006:8;:39::i;:::-;11063:4;11056:11;;10906:169;;;;:::o;32848:29::-;;;;:::o;33285:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;31885:51::-;;;:::o;9859:108::-;9920:7;9947:12;;9940:19;;9859:108;:::o;33069:33::-;;;;:::o;33029:::-;;;;:::o;37685:275::-;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37822:4:::1;37814;37809:1;37793:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37792:26;;;;:::i;:::-;37791:35;;;;:::i;:::-;37781:6;:45;;37759:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;37945:6;37935;:17;;;;:::i;:::-;37912:20;:40;;;;37685:275:::0;:::o;11557:492::-;11697:4;11714:36;11724:6;11732:9;11743:6;11714:9;:36::i;:::-;11763:24;11790:11;:19;11802:6;11790:19;;;;;;;;;;;;;;;:33;11810:12;:10;:12::i;:::-;11790:33;;;;;;;;;;;;;;;;11763:60;;11862:6;11842:16;:26;;11834:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11949:57;11958:6;11966:12;:10;:12::i;:::-;11999:6;11980:16;:25;11949:8;:57::i;:::-;12037:4;12030:11;;;11557:492;;;;;:::o;31988:53::-;32034:6;31988:53;:::o;38604:496::-;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38839:1:::1;38827:7;38811:13;38795;38781:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;38780:60;;38772:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;38879:11;38863:13;:27;;;;38919:13;38901:15;:31;;;;38961:13;38943:15;:31;;;;38997:7;38985:9;:19;;;;39082:9;;39064:15;;39046;;39030:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39015:12;:76;;;;38604:496:::0;;;;:::o;9701:93::-;9759:5;9784:2;9777:9;;9701:93;:::o;12458:215::-;12546:4;12563:80;12572:12;:10;:12::i;:::-;12586:7;12632:10;12595:11;:25;12607:12;:10;:12::i;:::-;12595:25;;;;;;;;;;;;;;;:34;12621:7;12595:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12563:8;:80::i;:::-;12661:4;12654:11;;12458:215;;;;:::o;32991:31::-;;;;:::o;31943:38::-;;;:::o;32297:33::-;;;;;;;;;;;;;:::o;40328:126::-;40394:4;40418:19;:28;40438:7;40418:28;;;;;;;;;;;;;;;;;;;;;;;;;40411:35;;40328:126;;;:::o;32816:28::-;;;;:::o;32377:31::-;;;;;;;;;;;;;:::o;10030:127::-;10104:7;10131:9;:18;10141:7;10131:18;;;;;;;;;;;;;;;;10124:25;;10030:127;;;:::o;2382:148::-;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2489:1:::1;2452:40;;2473:6;;;;;;;;;;;2452:40;;;;;;;;;;;;2520:1;2503:6;;:19;;;;;;;;;;;;;;;;;;2382:148::o:0;36793:121::-;36845:4;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36879:5:::1;36862:14;;:22;;;;;;;;;;;;;;;;;;36902:4;36895:11;;36793:121:::0;:::o;38233:167::-;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38388:4:::1;38346:31;:39;38378:6;38346:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;38233:167:::0;;:::o;32112:30::-;;;;;;;;;;;;;:::o;32077:28::-;;;;;;;;;;;;;:::o;32709:30::-;;;;:::o;36629:112::-;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;36700:4:::1;36684:13;;:20;;;;;;;;;;;;;;;;;;36729:4;36715:11;;:18;;;;;;;;;;;;;;;;;;36629:112::o:0;2168:79::-;2206:7;2233:6;;;;;;;;;;;2226:13;;2168:79;:::o;32149:24::-;;;;;;;;;;;;;:::o;32884:31::-;;;;:::o;38496:100::-;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38581:7:::1;38567:11;;:21;;;;;;;;;;;;;;;;;;38496:100:::0;:::o;8958:104::-;9014:13;9047:7;9040:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8958:104;:::o;39820:304::-;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39964:13:::1;39956:21;;:4;:21;;;;39934:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40075:41;40104:4;40110:5;40075:28;:41::i;:::-;39820:304:::0;;:::o;32783:24::-;;;;:::o;33109:27::-;;;;:::o;32960:25::-;;;;:::o;32674:28::-;;;;:::o;13176:413::-;13269:4;13286:24;13313:11;:25;13325:12;:10;:12::i;:::-;13313:25;;;;;;;;;;;;;;;:34;13339:7;13313:34;;;;;;;;;;;;;;;;13286:61;;13386:15;13366:16;:35;;13358:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13479:67;13488:12;:10;:12::i;:::-;13502:7;13530:15;13511:16;:34;13479:8;:67::i;:::-;13577:4;13570:11;;;13176:413;;;;:::o;10370:175::-;10456:4;10473:42;10483:12;:10;:12::i;:::-;10497:9;10508:6;10473:9;:42::i;:::-;10533:4;10526:11;;10370:175;;;;:::o;33506:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;32337:33::-;;;;;;;;;;;;;:::o;39630:182::-;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39746:8:::1;39715:19;:28;39735:7;39715:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39786:7;39770:34;;;39795:8;39770:34;;;;;;:::i;:::-;;;;;;;;39630:182:::0;;:::o;37968:256::-;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;38108:4:::1;38100;38095:1;38079:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38078:26;;;;:::i;:::-;38077:35;;;;:::i;:::-;38067:6;:45;;38045:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;38209:6;38199;:17;;;;:::i;:::-;38187:9;:29;;;;37968:256:::0;:::o;32595:39::-;;;;;;;;;;;;;:::o;32182:35::-;;;;:::o;37180:497::-;37288:4;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37367:6:::1;37362:1;37346:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37345:28;;;;:::i;:::-;37332:9;:41;;37310:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37522:4;37517:1;37501:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37500:26;;;;:::i;:::-;37487:9;:39;;37465:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37638:9;37617:18;:30;;;;37665:4;37658:11;;37180:497:::0;;;:::o;32643:27::-;;;;:::o;10608:151::-;10697:7;10724:11;:18;10736:5;10724:18;;;;;;;;;;;;;;;:27;10743:7;10724:27;;;;;;;;;;;;;;;;10717:34;;10608:151;;;;:::o;32224:33::-;;;;:::o;39108:514::-;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;39350:2:::1;39332:13;39316;39300;39286:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:59;;;;:::i;:::-;39285:67;;39277:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39394:11;39377:14;:28;;;;39435:13;39416:16;:32;;;;39478:13;39459:16;:32;;;;39515:7;39502:10;:20;;;;39604:10;;39585:16;;39566;;39549:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;39533:13;:81;;;;39108:514:::0;;;;:::o;36975:135::-;37035:4;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;37075:5:::1;37052:20;;:28;;;;;;;;;;;;;;;;;;37098:4;37091:11;;36975:135:::0;:::o;32746:30::-;;;;:::o;2538:244::-;2305:12;:10;:12::i;:::-;2295:22;;:6;;;;;;;;;;;:22;;;2287:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2647:1:::1;2627:22;;:8;:22;;;;2619:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2737:8;2708:38;;2729:6;;;;;;;;;;;2708:38;;;;;;;;;;;;2766:8;2757:6;;:17;;;;;;;;;;;;;;;;;;2538:244:::0;:::o;32922:31::-;;;;:::o;32264:24::-;;;;:::o;865:98::-;918:7;945:10;938:17;;865:98;:::o;16860:380::-;17013:1;16996:19;;:5;:19;;;;16988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17094:1;17075:21;;:7;:21;;;;17067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17178:6;17148:11;:18;17160:5;17148:18;;;;;;;;;;;;;;;:27;17167:7;17148:27;;;;;;;;;;;;;;;:36;;;;17216:7;17200:32;;17209:5;17200:32;;;17225:6;17200:32;;;;;;:::i;:::-;;;;;;;;16860:380;;;:::o;40462:4847::-;40610:1;40594:18;;:4;:18;;;;40586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40687:1;40673:16;;:2;:16;;;;40665:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40756:1;40746:6;:11;40742:93;;;40774:28;40790:4;40796:2;40800:1;40774:15;:28::i;:::-;40817:7;;40742:93;40851:14;;;;;;;;;;;40847:2487;;;40912:7;:5;:7::i;:::-;40904:15;;:4;:15;;;;:49;;;;;40946:7;:5;:7::i;:::-;40940:13;;:2;:13;;;;40904:49;:86;;;;;40988:1;40974:16;;:2;:16;;;;40904:86;:128;;;;;41025:6;41011:21;;:2;:21;;;;40904:128;:158;;;;;41054:8;;;;;;;;;;;41053:9;40904:158;40882:2441;;;41102:13;;;;;;;;;;;41097:223;;41174:19;:25;41194:4;41174:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41203:19;:23;41223:2;41203:23;;;;;;;;;;;;;;;;;;;;;;;;;41174:52;41140:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41097:223;41476:20;;;;;;;;;;;41472:641;;;41557:7;:5;:7::i;:::-;41551:13;;:2;:13;;;;:72;;;;;41607:15;41593:30;;:2;:30;;;;41551:72;:129;;;;;41666:13;41652:28;;:2;:28;;;;41551:129;41521:573;;;41844:12;41769:28;:39;41798:9;41769:39;;;;;;;;;;;;;;;;:87;41731:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42058:12;42016:28;:39;42045:9;42016:39;;;;;;;;;;;;;;;:54;;;;41521:573;41472:641;42187:25;:31;42213:4;42187:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42244:31;:35;42276:2;42244:35;;;;;;;;;;;;;;;;;;;;;;;;;42243:36;42187:92;42161:1147;;;42366:20;;42356:6;:30;;42322:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;42574:9;;42557:13;42567:2;42557:9;:13::i;:::-;42548:6;:22;;;;:::i;:::-;:35;;42514:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42161:1147;;;42752:25;:29;42778:2;42752:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42807:31;:37;42839:4;42807:37;;;;;;;;;;;;;;;;;;;;;;;;;42806:38;42752:92;42726:582;;;42931:20;;42921:6;:30;;42887:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;42726:582;;;43088:31;:35;43120:2;43088:35;;;;;;;;;;;;;;;;;;;;;;;;;43083:225;;43208:9;;43191:13;43201:2;43191:9;:13::i;:::-;43182:6;:22;;;;:::i;:::-;:35;;43148:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43083:225;42726:582;42161:1147;40882:2441;40847:2487;43346:28;43377:24;43395:4;43377:9;:24::i;:::-;43346:55;;43414:12;43453:18;;43429:20;:42;;43414:57;;43502:7;:35;;;;;43526:11;;;;;;;;;;;43502:35;:61;;;;;43555:8;;;;;;;;;;;43554:9;43502:61;:110;;;;;43581:25;:31;43607:4;43581:31;;;;;;;;;;;;;;;;;;;;;;;;;43580:32;43502:110;:153;;;;;43630:19;:25;43650:4;43630:25;;;;;;;;;;;;;;;;;;;;;;;;;43629:26;43502:153;:194;;;;;43673:19;:23;43693:2;43673:23;;;;;;;;;;;;;;;;;;;;;;;;;43672:24;43502:194;43484:326;;;43734:4;43723:8;;:15;;;;;;;;;;;;;;;;;;43755:10;:8;:10::i;:::-;43793:5;43782:8;;:16;;;;;;;;;;;;;;;;;;43484:326;43822:12;43838:8;;;;;;;;;;;43837:9;43822:24;;43948:19;:25;43968:4;43948:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43977:19;:23;43997:2;43977:23;;;;;;;;;;;;;;;;;;;;;;;;;43948:52;43944:100;;;44027:5;44017:15;;43944:100;44056:12;44161:7;44157:1099;;;44213:25;:29;44239:2;44213:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44262:1;44246:13;;:17;44213:50;44209:898;;;44291:34;44321:3;44291:25;44302:13;;44291:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;44284:41;;44378:13;;44360:14;;44353:4;:21;;;;:::i;:::-;44352:39;;;;:::i;:::-;44332:16;;:59;;;;;;;:::i;:::-;;;;;;;;44460:13;;44440:16;;44433:4;:23;;;;:::i;:::-;44432:41;;;;:::i;:::-;44410:18;;:63;;;;;;;:::i;:::-;;;;;;;;44530:13;;44516:10;;44509:4;:17;;;;:::i;:::-;44508:35;;;;:::i;:::-;44492:12;;:51;;;;;;;:::i;:::-;;;;;;;;44612:13;;44592:16;;44585:4;:23;;;;:::i;:::-;44584:41;;;;:::i;:::-;44562:18;;:63;;;;;;;:::i;:::-;;;;;;;;44209:898;;;44687:25;:31;44713:4;44687:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;44737:1;44722:12;;:16;44687:51;44683:424;;;44766:33;44795:3;44766:24;44777:12;;44766:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;44759:40;;44851:12;;44834:13;;44827:4;:20;;;;:::i;:::-;44826:37;;;;:::i;:::-;44806:16;;:57;;;;;;;:::i;:::-;;;;;;;;44931:12;;44912:15;;44905:4;:22;;;;:::i;:::-;44904:39;;;;:::i;:::-;44882:18;;:61;;;;;;;:::i;:::-;;;;;;;;44999:12;;44986:9;;44979:4;:16;;;;:::i;:::-;44978:33;;;;:::i;:::-;44962:12;;:49;;;;;;;:::i;:::-;;;;;;;;45079:12;;45060:15;;45053:4;:22;;;;:::i;:::-;45052:39;;;;:::i;:::-;45030:18;;:61;;;;;;;:::i;:::-;;;;;;;;44683:424;44209:898;45134:1;45127:4;:8;45123:91;;;45156:42;45172:4;45186;45193;45156:15;:42::i;:::-;45123:91;45240:4;45230:14;;;;;:::i;:::-;;;44157:1099;45268:33;45284:4;45290:2;45294:6;45268:15;:33::i;:::-;40575:4734;;;;40462:4847;;;;:::o;40132:188::-;40249:5;40215:25;:31;40241:4;40215:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40306:5;40272:40;;40300:4;40272:40;;;;;;;;;;;;40132:188;;:::o;14079:733::-;14237:1;14219:20;;:6;:20;;;;14211:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14321:1;14300:23;;:9;:23;;;;14292:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14376:47;14397:6;14405:9;14416:6;14376:20;:47::i;:::-;14436:21;14460:9;:17;14470:6;14460:17;;;;;;;;;;;;;;;;14436:41;;14513:6;14496:13;:23;;14488:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14634:6;14618:13;:22;14598:9;:17;14608:6;14598:17;;;;;;;;;;;;;;;:42;;;;14686:6;14662:9;:20;14672:9;14662:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14727:9;14710:35;;14719:6;14710:35;;;14738:6;14710:35;;;;;;:::i;:::-;;;;;;;;14758:46;14778:6;14786:9;14797:6;14758:19;:46::i;:::-;14200:612;14079:733;;;:::o;46437:1882::-;46476:23;46502:24;46520:4;46502:9;:24::i;:::-;46476:50;;46537:25;46626:12;;46605:18;;46584;;46565:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;46537:101;;46649:12;46697:1;46678:15;:20;:46;;;;46723:1;46702:17;:22;46678:46;46674:85;;;46741:7;;;;;46674:85;46814:2;46793:18;;:23;;;;:::i;:::-;46775:15;:41;46771:115;;;46872:2;46851:18;;:23;;;;:::i;:::-;46833:41;;46771:115;46947:23;47034:1;47014:17;46992:18;;46974:15;:36;;;;:::i;:::-;46973:58;;;;:::i;:::-;:62;;;;:::i;:::-;46947:88;;47046:26;47075:36;47095:15;47075;:19;;:36;;;;:::i;:::-;47046:65;;47124:25;47152:21;47124:49;;47186:36;47203:18;47186:16;:36::i;:::-;47235:18;47256:44;47282:17;47256:21;:25;;:44;;;;:::i;:::-;47235:65;;47307:21;47331:55;47368:17;47331:32;47346:16;;47331:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;47307:79;;47397:23;47423:57;47462:17;47423:34;47438:18;;47423:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;47397:83;;47491:17;47511:51;47544:17;47511:28;47526:12;;47511:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;47491:71;;47575:23;47648:9;47630:15;47614:13;47601:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;47575:82;;47691:1;47670:18;:22;;;;47716:1;47697:16;:20;;;;47749:1;47728:18;:22;;;;47776:1;47761:12;:16;;;;47812:9;;;;;;;;;;;47804:23;;47835:9;47804:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47790:59;;;;;47882:15;;;;;;;;;;;47874:29;;47911:15;47874:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47860:71;;;;;47968:1;47950:15;:19;:42;;;;;47991:1;47973:15;:19;47950:42;47946:278;;;48009:46;48022:15;48039;48009:12;:46::i;:::-;48075:137;48108:18;48145:15;48179:18;;48075:137;;;;;;;;:::i;:::-;;;;;;;;47946:278;48258:13;;;;;;;;;;;48250:27;;48285:21;48250:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48236:75;;;;;46465:1854;;;;;;;;;;;46437:1882;:::o;22313:98::-;22371:7;22402:1;22398;:5;;;;:::i;:::-;22391:12;;22313:98;;;;:::o;22712:::-;22770:7;22801:1;22797;:5;;;;:::i;:::-;22790:12;;22712:98;;;;:::o;17840:125::-;;;;:::o;18569:124::-;;;;:::o;21956:98::-;22014:7;22045:1;22041;:5;;;;:::i;:::-;22034:12;;21956:98;;;;:::o;45317:589::-;45443:21;45481:1;45467:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45443:40;;45512:4;45494;45499:1;45494:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45538:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45528:4;45533:1;45528:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;45573:62;45590:4;45605:15;45623:11;45573:8;:62::i;:::-;45674:15;:66;;;45755:11;45781:1;45825:4;45852;45872:15;45674:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45372:534;45317:589;:::o;45914:515::-;46062:62;46079:4;46094:15;46112:11;46062:8;:62::i;:::-;46167:15;:31;;;46206:9;46239:4;46259:11;46285:1;46328;46371:9;;;;;;;;;;;46395:15;46167:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45914:515;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:765::-;6557:6;6565;6573;6581;6630:3;6618:9;6609:7;6605:23;6601:33;6598:120;;;6637:79;;:::i;:::-;6598:120;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6884:2;6910:53;6955:7;6946:6;6935:9;6931:22;6910:53;:::i;:::-;6900:63;;6855:118;7012:2;7038:53;7083:7;7074:6;7063:9;7059:22;7038:53;:::i;:::-;7028:63;;6983:118;7140:2;7166:53;7211:7;7202:6;7191:9;7187:22;7166:53;:::i;:::-;7156:63;;7111:118;6471:765;;;;;;;:::o;7242:86::-;7277:7;7317:4;7310:5;7306:16;7295:27;;7242:86;;;:::o;7334:112::-;7417:22;7433:5;7417:22;:::i;:::-;7412:3;7405:35;7334:112;;:::o;7452:214::-;7541:4;7579:2;7568:9;7564:18;7556:26;;7592:67;7656:1;7645:9;7641:17;7632:6;7592:67;:::i;:::-;7452:214;;;;:::o;7672:116::-;7742:21;7757:5;7742:21;:::i;:::-;7735:5;7732:32;7722:60;;7778:1;7775;7768:12;7722:60;7672:116;:::o;7794:133::-;7837:5;7875:6;7862:20;7853:29;;7891:30;7915:5;7891:30;:::i;:::-;7794:133;;;;:::o;7933:468::-;7998:6;8006;8055:2;8043:9;8034:7;8030:23;8026:32;8023:119;;;8061:79;;:::i;:::-;8023:119;8181:1;8206:53;8251:7;8242:6;8231:9;8227:22;8206:53;:::i;:::-;8196:63;;8152:117;8308:2;8334:50;8376:7;8367:6;8356:9;8352:22;8334:50;:::i;:::-;8324:60;;8279:115;7933:468;;;;;:::o;8407:323::-;8463:6;8512:2;8500:9;8491:7;8487:23;8483:32;8480:119;;;8518:79;;:::i;:::-;8480:119;8638:1;8663:50;8705:7;8696:6;8685:9;8681:22;8663:50;:::i;:::-;8653:60;;8609:114;8407:323;;;;:::o;8736:474::-;8804:6;8812;8861:2;8849:9;8840:7;8836:23;8832:32;8829:119;;;8867:79;;:::i;:::-;8829:119;8987:1;9012:53;9057:7;9048:6;9037:9;9033:22;9012:53;:::i;:::-;9002:63;;8958:117;9114:2;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9085:118;8736:474;;;;;:::o;9216:180::-;9264:77;9261:1;9254:88;9361:4;9358:1;9351:15;9385:4;9382:1;9375:15;9402:320;9446:6;9483:1;9477:4;9473:12;9463:22;;9530:1;9524:4;9520:12;9551:18;9541:81;;9607:4;9599:6;9595:17;9585:27;;9541:81;9669:2;9661:6;9658:14;9638:18;9635:38;9632:84;;;9688:18;;:::i;:::-;9632:84;9453:269;9402:320;;;:::o;9728:182::-;9868:34;9864:1;9856:6;9852:14;9845:58;9728:182;:::o;9916:366::-;10058:3;10079:67;10143:2;10138:3;10079:67;:::i;:::-;10072:74;;10155:93;10244:3;10155:93;:::i;:::-;10273:2;10268:3;10264:12;10257:19;;9916:366;;;:::o;10288:419::-;10454:4;10492:2;10481:9;10477:18;10469:26;;10541:9;10535:4;10531:20;10527:1;10516:9;10512:17;10505:47;10569:131;10695:4;10569:131;:::i;:::-;10561:139;;10288:419;;;:::o;10713:180::-;10761:77;10758:1;10751:88;10858:4;10855:1;10848:15;10882:4;10879:1;10872:15;10899:348;10939:7;10962:20;10980:1;10962:20;:::i;:::-;10957:25;;10996:20;11014:1;10996:20;:::i;:::-;10991:25;;11184:1;11116:66;11112:74;11109:1;11106:81;11101:1;11094:9;11087:17;11083:105;11080:131;;;11191:18;;:::i;:::-;11080:131;11239:1;11236;11232:9;11221:20;;10899:348;;;;:::o;11253:180::-;11301:77;11298:1;11291:88;11398:4;11395:1;11388:15;11422:4;11419:1;11412:15;11439:185;11479:1;11496:20;11514:1;11496:20;:::i;:::-;11491:25;;11530:20;11548:1;11530:20;:::i;:::-;11525:25;;11569:1;11559:35;;11574:18;;:::i;:::-;11559:35;11616:1;11613;11609:9;11604:14;;11439:185;;;;:::o;11630:234::-;11770:34;11766:1;11758:6;11754:14;11747:58;11839:17;11834:2;11826:6;11822:15;11815:42;11630:234;:::o;11870:366::-;12012:3;12033:67;12097:2;12092:3;12033:67;:::i;:::-;12026:74;;12109:93;12198:3;12109:93;:::i;:::-;12227:2;12222:3;12218:12;12211:19;;11870:366;;;:::o;12242:419::-;12408:4;12446:2;12435:9;12431:18;12423:26;;12495:9;12489:4;12485:20;12481:1;12470:9;12466:17;12459:47;12523:131;12649:4;12523:131;:::i;:::-;12515:139;;12242:419;;;:::o;12667:227::-;12807:34;12803:1;12795:6;12791:14;12784:58;12876:10;12871:2;12863:6;12859:15;12852:35;12667:227;:::o;12900:366::-;13042:3;13063:67;13127:2;13122:3;13063:67;:::i;:::-;13056:74;;13139:93;13228:3;13139:93;:::i;:::-;13257:2;13252:3;13248:12;13241:19;;12900:366;;;:::o;13272:419::-;13438:4;13476:2;13465:9;13461:18;13453:26;;13525:9;13519:4;13515:20;13511:1;13500:9;13496:17;13489:47;13553:131;13679:4;13553:131;:::i;:::-;13545:139;;13272:419;;;:::o;13697:305::-;13737:3;13756:20;13774:1;13756:20;:::i;:::-;13751:25;;13790:20;13808:1;13790:20;:::i;:::-;13785:25;;13944:1;13876:66;13872:74;13869:1;13866:81;13863:107;;;13950:18;;:::i;:::-;13863:107;13994:1;13991;13987:9;13980:16;;13697:305;;;;:::o;14008:163::-;14148:15;14144:1;14136:6;14132:14;14125:39;14008:163;:::o;14177:366::-;14319:3;14340:67;14404:2;14399:3;14340:67;:::i;:::-;14333:74;;14416:93;14505:3;14416:93;:::i;:::-;14534:2;14529:3;14525:12;14518:19;;14177:366;;;:::o;14549:419::-;14715:4;14753:2;14742:9;14738:18;14730:26;;14802:9;14796:4;14792:20;14788:1;14777:9;14773:17;14766:47;14830:131;14956:4;14830:131;:::i;:::-;14822:139;;14549:419;;;:::o;14974:244::-;15114:34;15110:1;15102:6;15098:14;15091:58;15183:27;15178:2;15170:6;15166:15;15159:52;14974:244;:::o;15224:366::-;15366:3;15387:67;15451:2;15446:3;15387:67;:::i;:::-;15380:74;;15463:93;15552:3;15463:93;:::i;:::-;15581:2;15576:3;15572:12;15565:19;;15224:366;;;:::o;15596:419::-;15762:4;15800:2;15789:9;15785:18;15777:26;;15849:9;15843:4;15839:20;15835:1;15824:9;15820:17;15813:47;15877:131;16003:4;15877:131;:::i;:::-;15869:139;;15596:419;;;:::o;16021:224::-;16161:34;16157:1;16149:6;16145:14;16138:58;16230:7;16225:2;16217:6;16213:15;16206:32;16021:224;:::o;16251:366::-;16393:3;16414:67;16478:2;16473:3;16414:67;:::i;:::-;16407:74;;16490:93;16579:3;16490:93;:::i;:::-;16608:2;16603:3;16599:12;16592:19;;16251:366;;;:::o;16623:419::-;16789:4;16827:2;16816:9;16812:18;16804:26;;16876:9;16870:4;16866:20;16862:1;16851:9;16847:17;16840:47;16904:131;17030:4;16904:131;:::i;:::-;16896:139;;16623:419;;;:::o;17048:223::-;17188:34;17184:1;17176:6;17172:14;17165:58;17257:6;17252:2;17244:6;17240:15;17233:31;17048:223;:::o;17277:366::-;17419:3;17440:67;17504:2;17499:3;17440:67;:::i;:::-;17433:74;;17516:93;17605:3;17516:93;:::i;:::-;17634:2;17629:3;17625:12;17618:19;;17277:366;;;:::o;17649:419::-;17815:4;17853:2;17842:9;17838:18;17830:26;;17902:9;17896:4;17892:20;17888:1;17877:9;17873:17;17866:47;17930:131;18056:4;17930:131;:::i;:::-;17922:139;;17649:419;;;:::o;18074:240::-;18214:34;18210:1;18202:6;18198:14;18191:58;18283:23;18278:2;18270:6;18266:15;18259:48;18074:240;:::o;18320:366::-;18462:3;18483:67;18547:2;18542:3;18483:67;:::i;:::-;18476:74;;18559:93;18648:3;18559:93;:::i;:::-;18677:2;18672:3;18668:12;18661:19;;18320:366;;;:::o;18692:419::-;18858:4;18896:2;18885:9;18881:18;18873:26;;18945:9;18939:4;18935:20;18931:1;18920:9;18916:17;18909:47;18973:131;19099:4;18973:131;:::i;:::-;18965:139;;18692:419;;;:::o;19117:239::-;19257:34;19253:1;19245:6;19241:14;19234:58;19326:22;19321:2;19313:6;19309:15;19302:47;19117:239;:::o;19362:366::-;19504:3;19525:67;19589:2;19584:3;19525:67;:::i;:::-;19518:74;;19601:93;19690:3;19601:93;:::i;:::-;19719:2;19714:3;19710:12;19703:19;;19362:366;;;:::o;19734:419::-;19900:4;19938:2;19927:9;19923:18;19915:26;;19987:9;19981:4;19977:20;19973:1;19962:9;19958:17;19951:47;20015:131;20141:4;20015:131;:::i;:::-;20007:139;;19734:419;;;:::o;20159:165::-;20299:17;20295:1;20287:6;20283:14;20276:41;20159:165;:::o;20330:366::-;20472:3;20493:67;20557:2;20552:3;20493:67;:::i;:::-;20486:74;;20569:93;20658:3;20569:93;:::i;:::-;20687:2;20682:3;20678:12;20671:19;;20330:366;;;:::o;20702:419::-;20868:4;20906:2;20895:9;20891:18;20883:26;;20955:9;20949:4;20945:20;20941:1;20930:9;20926:17;20919:47;20983:131;21109:4;20983:131;:::i;:::-;20975:139;;20702:419;;;:::o;21127:225::-;21267:34;21263:1;21255:6;21251:14;21244:58;21336:8;21331:2;21323:6;21319:15;21312:33;21127:225;:::o;21358:366::-;21500:3;21521:67;21585:2;21580:3;21521:67;:::i;:::-;21514:74;;21597:93;21686:3;21597:93;:::i;:::-;21715:2;21710:3;21706:12;21699:19;;21358:366;;;:::o;21730:419::-;21896:4;21934:2;21923:9;21919:18;21911:26;;21983:9;21977:4;21973:20;21969:1;21958:9;21954:17;21947:47;22011:131;22137:4;22011:131;:::i;:::-;22003:139;;21730:419;;;:::o;22155:223::-;22295:34;22291:1;22283:6;22279:14;22272:58;22364:6;22359:2;22351:6;22347:15;22340:31;22155:223;:::o;22384:366::-;22526:3;22547:67;22611:2;22606:3;22547:67;:::i;:::-;22540:74;;22623:93;22712:3;22623:93;:::i;:::-;22741:2;22736:3;22732:12;22725:19;;22384:366;;;:::o;22756:419::-;22922:4;22960:2;22949:9;22945:18;22937:26;;23009:9;23003:4;22999:20;22995:1;22984:9;22980:17;22973:47;23037:131;23163:4;23037:131;:::i;:::-;23029:139;;22756:419;;;:::o;23181:221::-;23321:34;23317:1;23309:6;23305:14;23298:58;23390:4;23385:2;23377:6;23373:15;23366:29;23181:221;:::o;23408:366::-;23550:3;23571:67;23635:2;23630:3;23571:67;:::i;:::-;23564:74;;23647:93;23736:3;23647:93;:::i;:::-;23765:2;23760:3;23756:12;23749:19;;23408:366;;;:::o;23780:419::-;23946:4;23984:2;23973:9;23969:18;23961:26;;24033:9;24027:4;24023:20;24019:1;24008:9;24004:17;23997:47;24061:131;24187:4;24061:131;:::i;:::-;24053:139;;23780:419;;;:::o;24205:224::-;24345:34;24341:1;24333:6;24329:14;24322:58;24414:7;24409:2;24401:6;24397:15;24390:32;24205:224;:::o;24435:366::-;24577:3;24598:67;24662:2;24657:3;24598:67;:::i;:::-;24591:74;;24674:93;24763:3;24674:93;:::i;:::-;24792:2;24787:3;24783:12;24776:19;;24435:366;;;:::o;24807:419::-;24973:4;25011:2;25000:9;24996:18;24988:26;;25060:9;25054:4;25050:20;25046:1;25035:9;25031:17;25024:47;25088:131;25214:4;25088:131;:::i;:::-;25080:139;;24807:419;;;:::o;25232:222::-;25372:34;25368:1;25360:6;25356:14;25349:58;25441:5;25436:2;25428:6;25424:15;25417:30;25232:222;:::o;25460:366::-;25602:3;25623:67;25687:2;25682:3;25623:67;:::i;:::-;25616:74;;25699:93;25788:3;25699:93;:::i;:::-;25817:2;25812:3;25808:12;25801:19;;25460:366;;;:::o;25832:419::-;25998:4;26036:2;26025:9;26021:18;26013:26;;26085:9;26079:4;26075:20;26071:1;26060:9;26056:17;26049:47;26113:131;26239:4;26113:131;:::i;:::-;26105:139;;25832:419;;;:::o;26257:172::-;26397:24;26393:1;26385:6;26381:14;26374:48;26257:172;:::o;26435:366::-;26577:3;26598:67;26662:2;26657:3;26598:67;:::i;:::-;26591:74;;26674:93;26763:3;26674:93;:::i;:::-;26792:2;26787:3;26783:12;26776:19;;26435:366;;;:::o;26807:419::-;26973:4;27011:2;27000:9;26996:18;26988:26;;27060:9;27054:4;27050:20;27046:1;27035:9;27031:17;27024:47;27088:131;27214:4;27088:131;:::i;:::-;27080:139;;26807:419;;;:::o;27232:297::-;27372:34;27368:1;27360:6;27356:14;27349:58;27441:34;27436:2;27428:6;27424:15;27417:59;27510:11;27505:2;27497:6;27493:15;27486:36;27232:297;:::o;27535:366::-;27677:3;27698:67;27762:2;27757:3;27698:67;:::i;:::-;27691:74;;27774:93;27863:3;27774:93;:::i;:::-;27892:2;27887:3;27883:12;27876:19;;27535:366;;;:::o;27907:419::-;28073:4;28111:2;28100:9;28096:18;28088:26;;28160:9;28154:4;28150:20;28146:1;28135:9;28131:17;28124:47;28188:131;28314:4;28188:131;:::i;:::-;28180:139;;27907:419;;;:::o;28332:240::-;28472:34;28468:1;28460:6;28456:14;28449:58;28541:23;28536:2;28528:6;28524:15;28517:48;28332:240;:::o;28578:366::-;28720:3;28741:67;28805:2;28800:3;28741:67;:::i;:::-;28734:74;;28817:93;28906:3;28817:93;:::i;:::-;28935:2;28930:3;28926:12;28919:19;;28578:366;;;:::o;28950:419::-;29116:4;29154:2;29143:9;29139:18;29131:26;;29203:9;29197:4;29193:20;29189:1;29178:9;29174:17;29167:47;29231:131;29357:4;29231:131;:::i;:::-;29223:139;;28950:419;;;:::o;29375:169::-;29515:21;29511:1;29503:6;29499:14;29492:45;29375:169;:::o;29550:366::-;29692:3;29713:67;29777:2;29772:3;29713:67;:::i;:::-;29706:74;;29789:93;29878:3;29789:93;:::i;:::-;29907:2;29902:3;29898:12;29891:19;;29550:366;;;:::o;29922:419::-;30088:4;30126:2;30115:9;30111:18;30103:26;;30175:9;30169:4;30165:20;30161:1;30150:9;30146:17;30139:47;30203:131;30329:4;30203:131;:::i;:::-;30195:139;;29922:419;;;:::o;30347:241::-;30487:34;30483:1;30475:6;30471:14;30464:58;30556:24;30551:2;30543:6;30539:15;30532:49;30347:241;:::o;30594:366::-;30736:3;30757:67;30821:2;30816:3;30757:67;:::i;:::-;30750:74;;30833:93;30922:3;30833:93;:::i;:::-;30951:2;30946:3;30942:12;30935:19;;30594:366;;;:::o;30966:419::-;31132:4;31170:2;31159:9;31155:18;31147:26;;31219:9;31213:4;31209:20;31205:1;31194:9;31190:17;31183:47;31247:131;31373:4;31247:131;:::i;:::-;31239:139;;30966:419;;;:::o;31391:191::-;31431:4;31451:20;31469:1;31451:20;:::i;:::-;31446:25;;31485:20;31503:1;31485:20;:::i;:::-;31480:25;;31524:1;31521;31518:8;31515:34;;;31529:18;;:::i;:::-;31515:34;31574:1;31571;31567:9;31559:17;;31391:191;;;;:::o;31588:225::-;31728:34;31724:1;31716:6;31712:14;31705:58;31797:8;31792:2;31784:6;31780:15;31773:33;31588:225;:::o;31819:366::-;31961:3;31982:67;32046:2;32041:3;31982:67;:::i;:::-;31975:74;;32058:93;32147:3;32058:93;:::i;:::-;32176:2;32171:3;32167:12;32160:19;;31819:366;;;:::o;32191:419::-;32357:4;32395:2;32384:9;32380:18;32372:26;;32444:9;32438:4;32434:20;32430:1;32419:9;32415:17;32408:47;32472:131;32598:4;32472:131;:::i;:::-;32464:139;;32191:419;;;:::o;32616:147::-;32717:11;32754:3;32739:18;;32616:147;;;;:::o;32769:114::-;;:::o;32889:398::-;33048:3;33069:83;33150:1;33145:3;33069:83;:::i;:::-;33062:90;;33161:93;33250:3;33161:93;:::i;:::-;33279:1;33274:3;33270:11;33263:18;;32889:398;;;:::o;33293:379::-;33477:3;33499:147;33642:3;33499:147;:::i;:::-;33492:154;;33663:3;33656:10;;33293:379;;;:::o;33678:442::-;33827:4;33865:2;33854:9;33850:18;33842:26;;33878:71;33946:1;33935:9;33931:17;33922:6;33878:71;:::i;:::-;33959:72;34027:2;34016:9;34012:18;34003:6;33959:72;:::i;:::-;34041;34109:2;34098:9;34094:18;34085:6;34041:72;:::i;:::-;33678:442;;;;;;:::o;34126:180::-;34174:77;34171:1;34164:88;34271:4;34268:1;34261:15;34295:4;34292:1;34285:15;34312:180;34360:77;34357:1;34350:88;34457:4;34454:1;34447:15;34481:4;34478:1;34471:15;34498:143;34555:5;34586:6;34580:13;34571:22;;34602:33;34629:5;34602:33;:::i;:::-;34498:143;;;;:::o;34647:351::-;34717:6;34766:2;34754:9;34745:7;34741:23;34737:32;34734:119;;;34772:79;;:::i;:::-;34734:119;34892:1;34917:64;34973:7;34964:6;34953:9;34949:22;34917:64;:::i;:::-;34907:74;;34863:128;34647:351;;;;:::o;35004:85::-;35049:7;35078:5;35067:16;;35004:85;;;:::o;35095:158::-;35153:9;35186:61;35204:42;35213:32;35239:5;35213:32;:::i;:::-;35204:42;:::i;:::-;35186:61;:::i;:::-;35173:74;;35095:158;;;:::o;35259:147::-;35354:45;35393:5;35354:45;:::i;:::-;35349:3;35342:58;35259:147;;:::o;35412:114::-;35479:6;35513:5;35507:12;35497:22;;35412:114;;;:::o;35532:184::-;35631:11;35665:6;35660:3;35653:19;35705:4;35700:3;35696:14;35681:29;;35532:184;;;;:::o;35722:132::-;35789:4;35812:3;35804:11;;35842:4;35837:3;35833:14;35825:22;;35722:132;;;:::o;35860:108::-;35937:24;35955:5;35937:24;:::i;:::-;35932:3;35925:37;35860:108;;:::o;35974:179::-;36043:10;36064:46;36106:3;36098:6;36064:46;:::i;:::-;36142:4;36137:3;36133:14;36119:28;;35974:179;;;;:::o;36159:113::-;36229:4;36261;36256:3;36252:14;36244:22;;36159:113;;;:::o;36308:732::-;36427:3;36456:54;36504:5;36456:54;:::i;:::-;36526:86;36605:6;36600:3;36526:86;:::i;:::-;36519:93;;36636:56;36686:5;36636:56;:::i;:::-;36715:7;36746:1;36731:284;36756:6;36753:1;36750:13;36731:284;;;36832:6;36826:13;36859:63;36918:3;36903:13;36859:63;:::i;:::-;36852:70;;36945:60;36998:6;36945:60;:::i;:::-;36935:70;;36791:224;36778:1;36775;36771:9;36766:14;;36731:284;;;36735:14;37031:3;37024:10;;36432:608;;;36308:732;;;;:::o;37046:831::-;37309:4;37347:3;37336:9;37332:19;37324:27;;37361:71;37429:1;37418:9;37414:17;37405:6;37361:71;:::i;:::-;37442:80;37518:2;37507:9;37503:18;37494:6;37442:80;:::i;:::-;37569:9;37563:4;37559:20;37554:2;37543:9;37539:18;37532:48;37597:108;37700:4;37691:6;37597:108;:::i;:::-;37589:116;;37715:72;37783:2;37772:9;37768:18;37759:6;37715:72;:::i;:::-;37797:73;37865:3;37854:9;37850:19;37841:6;37797:73;:::i;:::-;37046:831;;;;;;;;:::o;37883:807::-;38132:4;38170:3;38159:9;38155:19;38147:27;;38184:71;38252:1;38241:9;38237:17;38228:6;38184:71;:::i;:::-;38265:72;38333:2;38322:9;38318:18;38309:6;38265:72;:::i;:::-;38347:80;38423:2;38412:9;38408:18;38399:6;38347:80;:::i;:::-;38437;38513:2;38502:9;38498:18;38489:6;38437:80;:::i;:::-;38527:73;38595:3;38584:9;38580:19;38571:6;38527:73;:::i;:::-;38610;38678:3;38667:9;38663:19;38654:6;38610:73;:::i;:::-;37883:807;;;;;;;;;:::o;38696:143::-;38753:5;38784:6;38778:13;38769:22;;38800:33;38827:5;38800:33;:::i;:::-;38696:143;;;;:::o;38845:663::-;38933:6;38941;38949;38998:2;38986:9;38977:7;38973:23;38969:32;38966:119;;;39004:79;;:::i;:::-;38966:119;39124:1;39149:64;39205:7;39196:6;39185:9;39181:22;39149:64;:::i;:::-;39139:74;;39095:128;39262:2;39288:64;39344:7;39335:6;39324:9;39320:22;39288:64;:::i;:::-;39278:74;;39233:129;39401:2;39427:64;39483:7;39474:6;39463:9;39459:22;39427:64;:::i;:::-;39417:74;;39372:129;38845:663;;;;;:::o
Swarm Source
ipfs://e0872408142e1eb50717656a5c48cbd8d2a4c4f9f685e3d66aaf1b39b4651ed8
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.