ERC-20
Overview
Max Total Supply
1,000,000 Shibbam
Holders
19
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
17,600 ShibbamValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShibbamInu
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-28 */ /** https://t.me/ShibbamETH https://twitter.com/ShibbamETH */ // Verified using https://dapp.tools // hevm: flattened sources of src/Shibbam.sol // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.0; */ /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } ////// src/IUniswapV2Factory.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } ////// src/IUniswapV2Pair.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } ////// src/IUniswapV2Router02.sol /* pragma solidity 0.8.10; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } ////// src/Shibbam.sol /* 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 ShibbamInu 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 marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; // 25 = .25% bool public lpBurnEnabled = true; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = false; bool public tradingActive = true; bool public swapEnabled = true; // 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 buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; 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 marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Shibbam Inu", "Shibbam") { 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 _buyMarketingFee = 12; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 12; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 1_000_000 * 1e18; maxTransactionAmount = 20_000 * 1e18; // 1% from total supply maxTransactionAmountTxn maxWallet = 40_000 * 1e18; // 4% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 1000; // 0.05% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0xd1d38dFe5c4f503b5A1C9d0fb68DE99C182396AA); // set as marketing wallet devWallet = address(0x1faf8F3ddb9885ff20f1f2D62A15A0D52B261FEe); // 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; lastLpBurnTime = block.timestamp; } // 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 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = 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 updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); 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; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } 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); 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); 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 deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = 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 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; // get balance of liquidity pair uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); // calculate amount to burn uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); // pull tokens from pancakePair liquidity and move to dead address permanently if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } //sync price since this is not in a swap transaction! IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","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":"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":"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":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","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":"_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
60c06040526019600b55600c8054600160ff199182168117909255610e10600d55610708600f556011805462ffffff1916620101001790556013805490911690911790553480156200005057600080fd5b50604080518082018252600b81526a5368696262616d20496e7560a81b6020808301918252835180850190945260078452665368696262616d60c81b908401528151919291620000a391600391620006aa565b508051620000b9906004906020840190620006aa565b505050620000d6620000d0620003f860201b60201c565b620003fc565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f88160016200044e565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000143573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000169919062000750565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001dd919062000750565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200022b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000251919062000750565b6001600160a01b031660a08190526200026c9060016200044e565b60a0516200027c906001620004c7565b69043c33c1937564800000600855690878678326eac9000000600a55600c60008082818069d3c21bcecceda10000006103e8620002bb82600562000798565b620002c79190620007ba565b60095560158790556016869055601785905584620002e68789620007dd565b620002f29190620007dd565b6014556019849055601a839055601b82905581620003118486620007dd565b6200031d9190620007dd565b601855600680546001600160a01b031990811673d1d38dfe5c4f503b5a1c9d0fb68de99c182396aa1790915560078054909116731faf8f3ddb9885ff20f1f2d62a15a0d52b261fee179055620003876200037f6005546001600160a01b031690565b60016200051b565b620003943060016200051b565b620003a361dead60016200051b565b620003c2620003ba6005546001600160a01b031690565b60016200044e565b620003cf3060016200044e565b620003de61dead60016200044e565b620003ea3382620005c5565b505050505050505062000835565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200049d5760405162461bcd60e51b8152602060048201819052602482015260008051602062004a6483398151915260448201526064015b60405180910390fd5b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005665760405162461bcd60e51b8152602060048201819052602482015260008051602062004a64833981519152604482015260640162000494565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200061d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000494565b8060026000828254620006319190620007dd565b90915550506001600160a01b0382166000908152602081905260408120805483929062000660908490620007dd565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006b890620007f8565b90600052602060002090601f016020900481019282620006dc576000855562000727565b82601f10620006f757805160ff191683800117855562000727565b8280016001018555821562000727579182015b82811115620007275782518255916020019190600101906200070a565b506200073592915062000739565b5090565b5b808211156200073557600081556001016200073a565b6000602082840312156200076357600080fd5b81516001600160a01b03811681146200077b57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007b557620007b562000782565b500290565b600082620007d857634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007f357620007f362000782565b500190565b600181811c908216806200080d57607f821691505b602082108114156200082f57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516141a7620008bd6000396000818161060d0152818161168201528181612216015281816122b1015281816122dd015281816128bc0152818161383b015281816138dd01526139090152600081816104590152818161286401528181613a3a01528181613b1a01528181613b7c01528181613bf60152613c6c01526141a76000f3fe6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610b24578063f637434214610b44578063f8b45b0514610b5a578063fe72b27a14610b7057600080fd5b8063dd62ed3e14610a90578063e2f4560514610ae3578063e884f26014610af9578063f11a24d314610b0e57600080fd5b8063c876d0b9116100dc578063c876d0b914610a2a578063c8c8ebe414610a44578063d257b34f14610a5a578063d85ba06314610a7a57600080fd5b8063bbc0c742146109ab578063c0246668146109ca578063c17b5b8c146109ea578063c18bc19514610a0a57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610925578063a9059cbb1461093b578063aacebbe31461095b578063b62496f51461097b57600080fd5b80639ec22c0e146108c35780639fccce32146108d9578063a0d82dc5146108ef578063a457c2d71461090557600080fd5b8063924de9b7116101c1578063924de9b71461085857806395d89b41146108785780639a7a23d61461088d5780639c3b4fdc146108ad57600080fd5b80638da5cb5b146107ea5780638ea5220f14610815578063921369131461084257600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146107725780637bce5a041461079f5780638095d564146107b55780638a8c523c146107d557600080fd5b8063715018a614610708578063730c18881461071d578063751039fc1461073d5780637571336a1461075257600080fd5b80634fbee193116102a65780634fbee193146106495780636a486a8e1461068f5780636ddd1713146106a557806370a08231146106c557600080fd5b8063313ce567146105bf57806339509351146105db57806349bd5a5e146105fb5780634a62bb651461062f57600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461055957806327c8f835146105795780632c3e486c1461058f5780632e82f1a0146105a557600080fd5b8063199ffc72146104f75780631a8145bb1461050d5780631f3fed8f14610523578063203e727e1461053957600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104a05780631816467f146104bf578063184c16c5146104e157600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b90565b6040516103df9190613cf7565b60405180910390f35b3480156103f457600080fd5b50610408610403366004613d8c565b610c22565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004613db8565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103df565b3480156104ac57600080fd5b506002545b6040519081526020016103df565b3480156104cb57600080fd5b506104df6104da366004613db8565b610c38565b005b3480156104ed57600080fd5b506104b1600f5481565b34801561050357600080fd5b506104b1600b5481565b34801561051957600080fd5b506104b1601d5481565b34801561052f57600080fd5b506104b1601c5481565b34801561054557600080fd5b506104df610554366004613dd5565b610d4d565b34801561056557600080fd5b50610408610574366004613dee565b610ea9565b34801561058557600080fd5b5061047b61dead81565b34801561059b57600080fd5b506104b1600d5481565b3480156105b157600080fd5b50600c546104089060ff1681565b3480156105cb57600080fd5b50604051601281526020016103df565b3480156105e757600080fd5b506104086105f6366004613d8c565b610f8f565b34801561060757600080fd5b5061047b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561063b57600080fd5b506011546104089060ff1681565b34801561065557600080fd5b50610408610664366004613db8565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f602052604090205460ff1690565b34801561069b57600080fd5b506104b160185481565b3480156106b157600080fd5b506011546104089062010000900460ff1681565b3480156106d157600080fd5b506104b16106e0366004613db8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561071457600080fd5b506104df610fd8565b34801561072957600080fd5b506104df610738366004613e3f565b611065565b34801561074957600080fd5b5061040861124e565b34801561075e57600080fd5b506104df61076d366004613e74565b611300565b34801561077e57600080fd5b5060065461047b9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107ab57600080fd5b506104b160155481565b3480156107c157600080fd5b506104df6107d0366004613ea9565b6113d6565b3480156107e157600080fd5b506104df611483565b3480156107f657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661047b565b34801561082157600080fd5b5060075461047b9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561084e57600080fd5b506104b160195481565b34801561086457600080fd5b506104df610873366004613ed5565b611537565b34801561088457600080fd5b506103d26115f0565b34801561089957600080fd5b506104df6108a8366004613e74565b6115ff565b3480156108b957600080fd5b506104b160175481565b3480156108cf57600080fd5b506104b160105481565b3480156108e557600080fd5b506104b1601e5481565b3480156108fb57600080fd5b506104b1601b5481565b34801561091157600080fd5b50610408610920366004613d8c565b61176a565b34801561093157600080fd5b506104b1600e5481565b34801561094757600080fd5b50610408610956366004613d8c565b611842565b34801561096757600080fd5b506104df610976366004613db8565b61184f565b34801561098757600080fd5b50610408610996366004613db8565b60216020526000908152604090205460ff1681565b3480156109b757600080fd5b5060115461040890610100900460ff1681565b3480156109d657600080fd5b506104df6109e5366004613e74565b61195f565b3480156109f657600080fd5b506104df610a05366004613ea9565b611a6a565b348015610a1657600080fd5b506104df610a25366004613dd5565b611b17565b348015610a3657600080fd5b506013546104089060ff1681565b348015610a5057600080fd5b506104b160085481565b348015610a6657600080fd5b50610408610a75366004613dd5565b611c72565b348015610a8657600080fd5b506104b160145481565b348015610a9c57600080fd5b506104b1610aab366004613ef0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610aef57600080fd5b506104b160095481565b348015610b0557600080fd5b50610408611e65565b348015610b1a57600080fd5b506104b160165481565b348015610b3057600080fd5b506104df610b3f366004613db8565b611f17565b348015610b5057600080fd5b506104b1601a5481565b348015610b6657600080fd5b506104b1600a5481565b348015610b7c57600080fd5b50610408610b8b366004613dd5565b612047565b606060038054610b9f90613f29565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcb90613f29565b8015610c185780601f10610bed57610100808354040283529160200191610c18565b820191906000526020600020905b815481529060010190602001808311610bfb57829003601f168201915b5050505050905090565b6000610c2f338484612392565b50600192915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610cbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314610dce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b670de0b6b3a76400006103e8610de360025490565b610dee906001613fac565b610df89190613fe9565b610e029190613fe9565b811015610e91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610cb5565b610ea381670de0b6b3a7640000613fac565b60085550565b6000610eb6848484612545565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610f77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610cb5565b610f848533858403612392565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610c2f918590610fd3908690614024565b612392565b60055473ffffffffffffffffffffffffffffffffffffffff163314611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b61106360006131dd565b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b610258831015611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610cb5565b6103e88211158015611188575060015b611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610cb5565b600d92909255600b55600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146112d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b50601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152602080526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b601583905560168290556017819055806114718385614024565b61147b9190614024565b601455505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611504576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600e55565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b6011805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610b9f90613f29565b60055473ffffffffffffffffffffffffffffffffffffffff163314611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cb5565b6117668282613254565b5050565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610cb5565b6118383385858403612392565b5060019392505050565b6000610c2f338484612545565b60055473ffffffffffffffffffffffffffffffffffffffff1633146118d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b60065460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146119e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601f602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611aeb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b6019839055601a829055601b81905580611b058385614024565b611b0f9190614024565b601855505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b670de0b6b3a76400006103e8611bad60025490565b611bb8906005613fac565b611bc29190613fe9565b611bcc9190613fe9565b811015611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b611c6c81670de0b6b3a7640000613fac565b600a5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611cf6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b620186a0611d0360025490565b611d0e906001613fac565b611d189190613fe9565b821015611da7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610cb5565b6103e8611db360025490565b611dbe906005613fac565b611dc89190613fe9565b821115611e57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610cb5565b50600981905560015b919050565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611ee9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b73ffffffffffffffffffffffffffffffffffffffff811661203b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cb5565b612044816131dd565b50565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146120cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b600f546010546120db9190614024565b4211612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610cb5565b6103e88211156121d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610cb5565b426010556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015612266573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061228a919061403c565b905060006122a461271061229e84876132d3565b906132e6565b905080156122d9576122d97f000000000000000000000000000000000000000000000000000000000000000061dead836132f2565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561234657600080fd5b505af115801561235a573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8316612434576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff82166124d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166125e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff821661268b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b806126a15761269c838360006132f2565b505050565b60115460ff1615612d305760055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906126f2575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612713575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612737575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b801561275e575060055474010000000000000000000000000000000000000000900460ff16155b15612d3057601154610100900460ff166128315773ffffffffffffffffffffffffffffffffffffffff83166000908152601f602052604090205460ff16806127cb575073ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604090205460ff165b612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610cb5565b60135460ff16156129e75760055473ffffffffffffffffffffffffffffffffffffffff8381169116148015906128b357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561290b57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129e7573260009081526012602052604090205443116129d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610cb5565b3260009081526012602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526021602052604090205460ff168015612a41575073ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff16155b15612b7857600854811115612ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610cb5565b600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612b0b9083614024565b1115612b73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610cb5565b612d30565b73ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff168015612bd2575073ffffffffffffffffffffffffffffffffffffffff8316600090815260208052604090205460ff16155b15612c6957600854811115612b73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff16612d3057600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612cc89083614024565b1115612d30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610cb5565b3060009081526020819052604090205460095481108015908190612d5c575060115462010000900460ff165b8015612d83575060055474010000000000000000000000000000000000000000900460ff16155b8015612db5575073ffffffffffffffffffffffffffffffffffffffff851660009081526021602052604090205460ff16155b8015612de7575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b8015612e19575073ffffffffffffffffffffffffffffffffffffffff84166000908152601f602052604090205460ff16155b15612e8e57600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055612e656135a6565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055474010000000000000000000000000000000000000000900460ff16158015612ede575073ffffffffffffffffffffffffffffffffffffffff841660009081526021602052604090205460ff165b8015612eec5750600c5460ff165b8015612f075750600d54600e54612f039190614024565b4210155b8015612f39575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b15612f4857612f466137fa565b505b60055473ffffffffffffffffffffffffffffffffffffffff86166000908152601f602052604090205460ff74010000000000000000000000000000000000000000909204821615911680612fc1575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff165b15612fca575060005b600081156131c95773ffffffffffffffffffffffffffffffffffffffff861660009081526021602052604090205460ff16801561300957506000601854115b156130c157613028606461229e601854886132d390919063ffffffff16565b9050601854601a548261303b9190613fac565b6130459190613fe9565b601d60008282546130569190614024565b9091555050601854601b5461306b9083613fac565b6130759190613fe9565b601e60008282546130869190614024565b909155505060185460195461309b9083613fac565b6130a59190613fe9565b601c60008282546130b69190614024565b909155506131ab9050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526021602052604090205460ff1680156130f857506000601454115b156131ab57613117606461229e601454886132d390919063ffffffff16565b90506014546016548261312a9190613fac565b6131349190613fe9565b601d60008282546131459190614024565b909155505060145460175461315a9083613fac565b6131649190613fe9565b601e60008282546131759190614024565b909155505060145460155461318a9083613fac565b6131949190613fe9565b601c60008282546131a59190614024565b90915550505b80156131bc576131bc8730836132f2565b6131c68186614055565b94505b6131d48787876132f2565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526021602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006132df8284613fac565b9392505050565b60006132df8284613fe9565b73ffffffffffffffffffffffffffffffffffffffff8316613395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff8216613438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156134ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290613532908490614024565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161359891815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546135cd9190614024565b6135d79190614024565b905060008215806135e6575081155b156135f057505050565b6009546135fe906014613fac565b83111561361657600954613613906014613fac565b92505b6000600283601d54866136299190613fac565b6136339190613fe9565b61363d9190613fe9565b9050600061364b85836139bd565b905047613657826139c9565b600061366347836139bd565b905060006136808761229e601c54856132d390919063ffffffff16565b9050600061369d8861229e601e54866132d390919063ffffffff16565b90506000816136ac8486614055565b6136b69190614055565b6000601d819055601c819055601e81905560075460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114613720576040519150601f19603f3d011682016040523d82523d6000602084013e613725565b606091505b509098505086158015906137395750600081115b1561378c576137488782613bf0565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60065460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d80600081146137e6576040519150601f19603f3d011682016040523d82523d6000602084013e6137eb565b606091505b50505050505050505050505050565b42600e556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa15801561388d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138b1919061403c565b905060006138d061271061229e600b54856132d390919063ffffffff16565b90508015613905576139057f000000000000000000000000000000000000000000000000000000000000000061dead836132f2565b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561397257600080fd5b505af1158015613986573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006132df8284614055565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106139fe576139fe61406c565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613aa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ac7919061409b565b81600181518110613ada57613ada61406c565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613b3f307f000000000000000000000000000000000000000000000000000000000000000084612392565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790613bba9085906000908690309042906004016140b8565b600060405180830381600087803b158015613bd457600080fd5b505af1158015613be8573d6000803e3d6000fd5b505050505050565b613c1b307f000000000000000000000000000000000000000000000000000000000000000084612392565b6040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063f305d71990839060c40160606040518083038185885af1158015613ccb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613cf09190614143565b5050505050565b600060208083528351808285015260005b81811015613d2457858101830151858201604001528201613d08565b81811115613d36576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461204457600080fd5b60008060408385031215613d9f57600080fd5b8235613daa81613d6a565b946020939093013593505050565b600060208284031215613dca57600080fd5b81356132df81613d6a565b600060208284031215613de757600080fd5b5035919050565b600080600060608486031215613e0357600080fd5b8335613e0e81613d6a565b92506020840135613e1e81613d6a565b929592945050506040919091013590565b80358015158114611e6057600080fd5b600080600060608486031215613e5457600080fd5b8335925060208401359150613e6b60408501613e2f565b90509250925092565b60008060408385031215613e8757600080fd5b8235613e9281613d6a565b9150613ea060208401613e2f565b90509250929050565b600080600060608486031215613ebe57600080fd5b505081359360208301359350604090920135919050565b600060208284031215613ee757600080fd5b6132df82613e2f565b60008060408385031215613f0357600080fd5b8235613f0e81613d6a565b91506020830135613f1e81613d6a565b809150509250929050565b600181811c90821680613f3d57607f821691505b60208210811415613f77577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fe457613fe4613f7d565b500290565b60008261401f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000821982111561403757614037613f7d565b500190565b60006020828403121561404e57600080fd5b5051919050565b60008282101561406757614067613f7d565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156140ad57600080fd5b81516132df81613d6a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561411557845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016140e3565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561415857600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a1aa35103d9642c04455df0cf87cb7f06d472ebaacb19286bee6a5d7d2969cf964736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106103b15760003560e01c80638da5cb5b116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610b24578063f637434214610b44578063f8b45b0514610b5a578063fe72b27a14610b7057600080fd5b8063dd62ed3e14610a90578063e2f4560514610ae3578063e884f26014610af9578063f11a24d314610b0e57600080fd5b8063c876d0b9116100dc578063c876d0b914610a2a578063c8c8ebe414610a44578063d257b34f14610a5a578063d85ba06314610a7a57600080fd5b8063bbc0c742146109ab578063c0246668146109ca578063c17b5b8c146109ea578063c18bc19514610a0a57600080fd5b80639ec22c0e11610185578063a4c82a0011610154578063a4c82a0014610925578063a9059cbb1461093b578063aacebbe31461095b578063b62496f51461097b57600080fd5b80639ec22c0e146108c35780639fccce32146108d9578063a0d82dc5146108ef578063a457c2d71461090557600080fd5b8063924de9b7116101c1578063924de9b71461085857806395d89b41146108785780639a7a23d61461088d5780639c3b4fdc146108ad57600080fd5b80638da5cb5b146107ea5780638ea5220f14610815578063921369131461084257600080fd5b8063313ce567116102d7578063715018a61161026a57806375f0a8741161023957806375f0a874146107725780637bce5a041461079f5780638095d564146107b55780638a8c523c146107d557600080fd5b8063715018a614610708578063730c18881461071d578063751039fc1461073d5780637571336a1461075257600080fd5b80634fbee193116102a65780634fbee193146106495780636a486a8e1461068f5780636ddd1713146106a557806370a08231146106c557600080fd5b8063313ce567146105bf57806339509351146105db57806349bd5a5e146105fb5780634a62bb651461062f57600080fd5b8063199ffc721161034f57806323b872dd1161031e57806323b872dd1461055957806327c8f835146105795780632c3e486c1461058f5780632e82f1a0146105a557600080fd5b8063199ffc72146104f75780631a8145bb1461050d5780631f3fed8f14610523578063203e727e1461053957600080fd5b80631694505e1161038b5780631694505e1461044757806318160ddd146104a05780631816467f146104bf578063184c16c5146104e157600080fd5b806306fdde03146103bd578063095ea7b3146103e857806310d5de531461041857600080fd5b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610b90565b6040516103df9190613cf7565b60405180910390f35b3480156103f457600080fd5b50610408610403366004613d8c565b610c22565b60405190151581526020016103df565b34801561042457600080fd5b50610408610433366004613db8565b602080526000908152604090205460ff1681565b34801561045357600080fd5b5061047b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103df565b3480156104ac57600080fd5b506002545b6040519081526020016103df565b3480156104cb57600080fd5b506104df6104da366004613db8565b610c38565b005b3480156104ed57600080fd5b506104b1600f5481565b34801561050357600080fd5b506104b1600b5481565b34801561051957600080fd5b506104b1601d5481565b34801561052f57600080fd5b506104b1601c5481565b34801561054557600080fd5b506104df610554366004613dd5565b610d4d565b34801561056557600080fd5b50610408610574366004613dee565b610ea9565b34801561058557600080fd5b5061047b61dead81565b34801561059b57600080fd5b506104b1600d5481565b3480156105b157600080fd5b50600c546104089060ff1681565b3480156105cb57600080fd5b50604051601281526020016103df565b3480156105e757600080fd5b506104086105f6366004613d8c565b610f8f565b34801561060757600080fd5b5061047b7f00000000000000000000000067d18c0e5ea0acc34081302ae4338b0c896991aa81565b34801561063b57600080fd5b506011546104089060ff1681565b34801561065557600080fd5b50610408610664366004613db8565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f602052604090205460ff1690565b34801561069b57600080fd5b506104b160185481565b3480156106b157600080fd5b506011546104089062010000900460ff1681565b3480156106d157600080fd5b506104b16106e0366004613db8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b34801561071457600080fd5b506104df610fd8565b34801561072957600080fd5b506104df610738366004613e3f565b611065565b34801561074957600080fd5b5061040861124e565b34801561075e57600080fd5b506104df61076d366004613e74565b611300565b34801561077e57600080fd5b5060065461047b9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156107ab57600080fd5b506104b160155481565b3480156107c157600080fd5b506104df6107d0366004613ea9565b6113d6565b3480156107e157600080fd5b506104df611483565b3480156107f657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661047b565b34801561082157600080fd5b5060075461047b9073ffffffffffffffffffffffffffffffffffffffff1681565b34801561084e57600080fd5b506104b160195481565b34801561086457600080fd5b506104df610873366004613ed5565b611537565b34801561088457600080fd5b506103d26115f0565b34801561089957600080fd5b506104df6108a8366004613e74565b6115ff565b3480156108b957600080fd5b506104b160175481565b3480156108cf57600080fd5b506104b160105481565b3480156108e557600080fd5b506104b1601e5481565b3480156108fb57600080fd5b506104b1601b5481565b34801561091157600080fd5b50610408610920366004613d8c565b61176a565b34801561093157600080fd5b506104b1600e5481565b34801561094757600080fd5b50610408610956366004613d8c565b611842565b34801561096757600080fd5b506104df610976366004613db8565b61184f565b34801561098757600080fd5b50610408610996366004613db8565b60216020526000908152604090205460ff1681565b3480156109b757600080fd5b5060115461040890610100900460ff1681565b3480156109d657600080fd5b506104df6109e5366004613e74565b61195f565b3480156109f657600080fd5b506104df610a05366004613ea9565b611a6a565b348015610a1657600080fd5b506104df610a25366004613dd5565b611b17565b348015610a3657600080fd5b506013546104089060ff1681565b348015610a5057600080fd5b506104b160085481565b348015610a6657600080fd5b50610408610a75366004613dd5565b611c72565b348015610a8657600080fd5b506104b160145481565b348015610a9c57600080fd5b506104b1610aab366004613ef0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b348015610aef57600080fd5b506104b160095481565b348015610b0557600080fd5b50610408611e65565b348015610b1a57600080fd5b506104b160165481565b348015610b3057600080fd5b506104df610b3f366004613db8565b611f17565b348015610b5057600080fd5b506104b1601a5481565b348015610b6657600080fd5b506104b1600a5481565b348015610b7c57600080fd5b50610408610b8b366004613dd5565b612047565b606060038054610b9f90613f29565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcb90613f29565b8015610c185780601f10610bed57610100808354040283529160200191610c18565b820191906000526020600020905b815481529060010190602001808311610bfb57829003601f168201915b5050505050905090565b6000610c2f338484612392565b50600192915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610cbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314610dce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b670de0b6b3a76400006103e8610de360025490565b610dee906001613fac565b610df89190613fe9565b610e029190613fe9565b811015610e91576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e312500000000000000000000000000000000006064820152608401610cb5565b610ea381670de0b6b3a7640000613fac565b60085550565b6000610eb6848484612545565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610f77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610cb5565b610f848533858403612392565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610c2f918590610fd3908690614024565b612392565b60055473ffffffffffffffffffffffffffffffffffffffff163314611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b61106360006131dd565b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110e6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b610258831015611178576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860448201527f616e206576657279203130206d696e75746573000000000000000000000000006064820152608401610cb5565b6103e88211158015611188575060015b611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201527f747765656e20302520616e6420313025000000000000000000000000000000006064820152608401610cb5565b600d92909255600b55600c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146112d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b50601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314611381576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b73ffffffffffffffffffffffffffffffffffffffff919091166000908152602080526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b601583905560168290556017819055806114718385614024565b61147b9190614024565b601455505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611504576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b601180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff166201010017905542600e55565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b6011805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610b9f90613f29565b60055473ffffffffffffffffffffffffffffffffffffffff163314611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b7f00000000000000000000000067d18c0e5ea0acc34081302ae4338b0c896991aa73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cb5565b6117668282613254565b5050565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff861684529091528120548281101561182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610cb5565b6118383385858403612392565b5060019392505050565b6000610c2f338484612545565b60055473ffffffffffffffffffffffffffffffffffffffff1633146118d0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b60065460405173ffffffffffffffffffffffffffffffffffffffff918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146119e0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b73ffffffffffffffffffffffffffffffffffffffff82166000818152601f602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611aeb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b6019839055601a829055601b81905580611b058385614024565b611b0f9190614024565b601855505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b670de0b6b3a76400006103e8611bad60025490565b611bb8906005613fac565b611bc29190613fe9565b611bcc9190613fe9565b811015611c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f302e3525000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b611c6c81670de0b6b3a7640000613fac565b600a5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611cf6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b620186a0611d0360025490565b611d0e906001613fac565b611d189190613fe9565b821015611da7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610cb5565b6103e8611db360025490565b611dbe906005613fac565b611dc89190613fe9565b821115611e57576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610cb5565b50600981905560015b919050565b60055460009073ffffffffffffffffffffffffffffffffffffffff163314611ee9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b50601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b73ffffffffffffffffffffffffffffffffffffffff811661203b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610cb5565b612044816131dd565b50565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146120cb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cb5565b600f546010546120db9190614024565b4211612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610cb5565b6103e88211156121d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201527f6b656e7320696e204c50000000000000000000000000000000000000000000006064820152608401610cb5565b426010556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000067d18c0e5ea0acc34081302ae4338b0c896991aa16600482015260009030906370a0823190602401602060405180830381865afa158015612266573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061228a919061403c565b905060006122a461271061229e84876132d3565b906132e6565b905080156122d9576122d97f00000000000000000000000067d18c0e5ea0acc34081302ae4338b0c896991aa61dead836132f2565b60007f00000000000000000000000067d18c0e5ea0acc34081302ae4338b0c896991aa90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561234657600080fd5b505af115801561235a573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8316612434576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff82166124d7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166125e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff821661268b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b806126a15761269c838360006132f2565b505050565b60115460ff1615612d305760055473ffffffffffffffffffffffffffffffffffffffff8481169116148015906126f2575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612713575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612737575073ffffffffffffffffffffffffffffffffffffffff821661dead14155b801561275e575060055474010000000000000000000000000000000000000000900460ff16155b15612d3057601154610100900460ff166128315773ffffffffffffffffffffffffffffffffffffffff83166000908152601f602052604090205460ff16806127cb575073ffffffffffffffffffffffffffffffffffffffff82166000908152601f602052604090205460ff165b612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610cb5565b60135460ff16156129e75760055473ffffffffffffffffffffffffffffffffffffffff8381169116148015906128b357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561290b57507f00000000000000000000000067d18c0e5ea0acc34081302ae4338b0c896991aa73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156129e7573260009081526012602052604090205443116129d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60648201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000608482015260a401610cb5565b3260009081526012602052604090204390555b73ffffffffffffffffffffffffffffffffffffffff831660009081526021602052604090205460ff168015612a41575073ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff16155b15612b7857600854811115612ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610cb5565b600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612b0b9083614024565b1115612b73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610cb5565b612d30565b73ffffffffffffffffffffffffffffffffffffffff821660009081526021602052604090205460ff168015612bd2575073ffffffffffffffffffffffffffffffffffffffff8316600090815260208052604090205460ff16155b15612c6957600854811115612b73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260208052604090205460ff16612d3057600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612cc89083614024565b1115612d30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610cb5565b3060009081526020819052604090205460095481108015908190612d5c575060115462010000900460ff165b8015612d83575060055474010000000000000000000000000000000000000000900460ff16155b8015612db5575073ffffffffffffffffffffffffffffffffffffffff851660009081526021602052604090205460ff16155b8015612de7575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b8015612e19575073ffffffffffffffffffffffffffffffffffffffff84166000908152601f602052604090205460ff16155b15612e8e57600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055612e656135a6565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60055474010000000000000000000000000000000000000000900460ff16158015612ede575073ffffffffffffffffffffffffffffffffffffffff841660009081526021602052604090205460ff165b8015612eec5750600c5460ff165b8015612f075750600d54600e54612f039190614024565b4210155b8015612f39575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff16155b15612f4857612f466137fa565b505b60055473ffffffffffffffffffffffffffffffffffffffff86166000908152601f602052604090205460ff74010000000000000000000000000000000000000000909204821615911680612fc1575073ffffffffffffffffffffffffffffffffffffffff85166000908152601f602052604090205460ff165b15612fca575060005b600081156131c95773ffffffffffffffffffffffffffffffffffffffff861660009081526021602052604090205460ff16801561300957506000601854115b156130c157613028606461229e601854886132d390919063ffffffff16565b9050601854601a548261303b9190613fac565b6130459190613fe9565b601d60008282546130569190614024565b9091555050601854601b5461306b9083613fac565b6130759190613fe9565b601e60008282546130869190614024565b909155505060185460195461309b9083613fac565b6130a59190613fe9565b601c60008282546130b69190614024565b909155506131ab9050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526021602052604090205460ff1680156130f857506000601454115b156131ab57613117606461229e601454886132d390919063ffffffff16565b90506014546016548261312a9190613fac565b6131349190613fe9565b601d60008282546131459190614024565b909155505060145460175461315a9083613fac565b6131649190613fe9565b601e60008282546131759190614024565b909155505060145460155461318a9083613fac565b6131949190613fe9565b601c60008282546131a59190614024565b90915550505b80156131bc576131bc8730836132f2565b6131c68186614055565b94505b6131d48787876132f2565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526021602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006132df8284613fac565b9392505050565b60006132df8284613fe9565b73ffffffffffffffffffffffffffffffffffffffff8316613395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff8216613438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156134ee576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610cb5565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290613532908490614024565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161359891815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601e54601c54601d546135cd9190614024565b6135d79190614024565b905060008215806135e6575081155b156135f057505050565b6009546135fe906014613fac565b83111561361657600954613613906014613fac565b92505b6000600283601d54866136299190613fac565b6136339190613fe9565b61363d9190613fe9565b9050600061364b85836139bd565b905047613657826139c9565b600061366347836139bd565b905060006136808761229e601c54856132d390919063ffffffff16565b9050600061369d8861229e601e54866132d390919063ffffffff16565b90506000816136ac8486614055565b6136b69190614055565b6000601d819055601c819055601e81905560075460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d8060008114613720576040519150601f19603f3d011682016040523d82523d6000602084013e613725565b606091505b509098505086158015906137395750600081115b1561378c576137488782613bf0565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b60065460405173ffffffffffffffffffffffffffffffffffffffff909116904790600081818185875af1925050503d80600081146137e6576040519150601f19603f3d011682016040523d82523d6000602084013e6137eb565b606091505b50505050505050505050505050565b42600e556040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000067d18c0e5ea0acc34081302ae4338b0c896991aa166004820152600090819030906370a0823190602401602060405180830381865afa15801561388d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138b1919061403c565b905060006138d061271061229e600b54856132d390919063ffffffff16565b90508015613905576139057f00000000000000000000000067d18c0e5ea0acc34081302ae4338b0c896991aa61dead836132f2565b60007f00000000000000000000000067d18c0e5ea0acc34081302ae4338b0c896991aa90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561397257600080fd5b505af1158015613986573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006132df8284614055565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106139fe576139fe61406c565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613aa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ac7919061409b565b81600181518110613ada57613ada61406c565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613b3f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612392565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790613bba9085906000908690309042906004016140b8565b600060405180830381600087803b158015613bd457600080fd5b505af1158015613be8573d6000803e3d6000fd5b505050505050565b613c1b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612392565b6040517ff305d71900000000000000000000000000000000000000000000000000000000815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff169063f305d71990839060c40160606040518083038185885af1158015613ccb573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613cf09190614143565b5050505050565b600060208083528351808285015260005b81811015613d2457858101830151858201604001528201613d08565b81811115613d36576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b73ffffffffffffffffffffffffffffffffffffffff8116811461204457600080fd5b60008060408385031215613d9f57600080fd5b8235613daa81613d6a565b946020939093013593505050565b600060208284031215613dca57600080fd5b81356132df81613d6a565b600060208284031215613de757600080fd5b5035919050565b600080600060608486031215613e0357600080fd5b8335613e0e81613d6a565b92506020840135613e1e81613d6a565b929592945050506040919091013590565b80358015158114611e6057600080fd5b600080600060608486031215613e5457600080fd5b8335925060208401359150613e6b60408501613e2f565b90509250925092565b60008060408385031215613e8757600080fd5b8235613e9281613d6a565b9150613ea060208401613e2f565b90509250929050565b600080600060608486031215613ebe57600080fd5b505081359360208301359350604090920135919050565b600060208284031215613ee757600080fd5b6132df82613e2f565b60008060408385031215613f0357600080fd5b8235613f0e81613d6a565b91506020830135613f1e81613d6a565b809150509250929050565b600181811c90821680613f3d57607f821691505b60208210811415613f77577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fe457613fe4613f7d565b500290565b60008261401f577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000821982111561403757614037613f7d565b500190565b60006020828403121561404e57600080fd5b5051919050565b60008282101561406757614067613f7d565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000602082840312156140ad57600080fd5b81516132df81613d6a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561411557845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016140e3565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561415857600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a1aa35103d9642c04455df0cf87cb7f06d472ebaacb19286bee6a5d7d2969cf964736f6c634300080a0033
Deployed Bytecode Sourcemap
32908:19296:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9712:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11879:169;;;;;;;;;;-1:-1:-1;11879:169:0;;;;;:::i;:::-;;:::i;:::-;;;1319:14:1;;1312:22;1294:41;;1282:2;1267:18;11879:169:0;1154:187:1;34538:63:0;;;;;;;;;;-1:-1:-1;34538:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32988:51;;;;;;;;;;;;;;;;;;1801:42:1;1789:55;;;1771:74;;1759:2;1744:18;32988:51:0;1598:253:1;10832:108:0;;;;;;;;;;-1:-1:-1;10920:12:0;;10832:108;;;2002:25:1;;;1990:2;1975:18;10832:108:0;1856:177:1;41532:157:0;;;;;;;;;;-1:-1:-1;41532:157:0;;;;;:::i;:::-;;:::i;:::-;;33553:47;;;;;;;;;;;;;;;;33368:36;;;;;;;;;;;;;;;;34322:33;;;;;;;;;;;;;;;;34282;;;;;;;;;;;;;;;;38989:275;;;;;;;;;;-1:-1:-1;38989:275:0;;;;;:::i;:::-;;:::i;12530:492::-;;;;;;;;;;-1:-1:-1;12530:492:0;;;;;:::i;:::-;;:::i;33091:53::-;;;;;;;;;;;;33137:6;33091:53;;33463:45;;;;;;;;;;;;;;;;33424:32;;;;;;;;;;-1:-1:-1;33424:32:0;;;;;;;;10674:93;;;;;;;;;;-1:-1:-1;10674:93:0;;10757:2;3057:36:1;;3045:2;3030:18;10674:93:0;2915:184:1;13431:215:0;;;;;;;;;;-1:-1:-1;13431:215:0;;;;;:::i;:::-;;:::i;33046:38::-;;;;;;;;;;;;;;;33651:34;;;;;;;;;;-1:-1:-1;33651:34:0;;;;;;;;41697:126;;;;;;;;;;-1:-1:-1;41697:126:0;;;;;:::i;:::-;41787:28;;41763:4;41787:28;;;:19;:28;;;;;;;;;41697:126;34137:28;;;;;;;;;;;;;;;;33731:30;;;;;;;;;;-1:-1:-1;33731:30:0;;;;;;;;;;;11003:127;;;;;;;;;;-1:-1:-1;11003:127:0;;;;;:::i;:::-;11104:18;;11077:7;11104:18;;;;;;;;;;;;11003:127;2947:103;;;;;;;;;;;;;:::i;49786:555::-;;;;;;;;;;-1:-1:-1;49786:555:0;;;;;:::i;:::-;;:::i;38097:121::-;;;;;;;;;;;;;:::i;39536:167::-;;;;;;;;;;-1:-1:-1;39536:167:0;;;;;:::i;:::-;;:::i;33183:30::-;;;;;;;;;;-1:-1:-1;33183:30:0;;;;;;;;34030;;;;;;;;;;;;;;;;39907:332;;;;;;;;;;-1:-1:-1;39907:332:0;;;;;:::i;:::-;;:::i;37890:155::-;;;;;;;;;;;;;:::i;2296:87::-;;;;;;;;;;-1:-1:-1;2369:6:0;;;;2296:87;;33220:24;;;;;;;;;;-1:-1:-1;33220:24:0;;;;;;;;34172:31;;;;;;;;;;;;;;;;39799:100;;;;;;;;;;-1:-1:-1;39799:100:0;;;;;:::i;:::-;;:::i;9931:104::-;;;;;;;;;;;;;:::i;40785:304::-;;;;;;;;;;-1:-1:-1;40785:304:0;;;;;:::i;:::-;;:::i;34104:24::-;;;;;;;;;;;;;;;;33607:35;;;;;;;;;;;;;;;;34362:27;;;;;;;;;;;;;;;;34248:25;;;;;;;;;;;;;;;;14149:413;;;;;;;;;;-1:-1:-1;14149:413:0;;;;;:::i;:::-;;:::i;33515:29::-;;;;;;;;;;;;;;;;11343:175;;;;;;;;;;-1:-1:-1;11343:175:0;;;;;:::i;:::-;;:::i;41293:231::-;;;;;;;;;;-1:-1:-1;41293:231:0;;;;;:::i;:::-;;:::i;34759:57::-;;;;;;;;;;-1:-1:-1;34759:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33692:32;;;;;;;;;;-1:-1:-1;33692:32:0;;;;;;;;;;;40595:182;;;;;;;;;;-1:-1:-1;40595:182:0;;;;;:::i;:::-;;:::i;40247:340::-;;;;;;;;;;-1:-1:-1;40247:340:0;;;;;:::i;:::-;;:::i;39272:256::-;;;;;;;;;;-1:-1:-1;39272:256:0;;;;;:::i;:::-;;:::i;33948:39::-;;;;;;;;;;-1:-1:-1;33948:39:0;;;;;;;;33253:35;;;;;;;;;;;;;;;;38484:497;;;;;;;;;;-1:-1:-1;38484:497:0;;;;;:::i;:::-;;:::i;33996:27::-;;;;;;;;;;;;;;;;11581:151;;;;;;;;;;-1:-1:-1;11581:151:0;;;;;:::i;:::-;11697:18;;;;11670:7;11697:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11581:151;33295:33;;;;;;;;;;;;;;;;38279:135;;;;;;;;;;;;;:::i;34067:30::-;;;;;;;;;;;;;;;;3205:201;;;;;;;;;;-1:-1:-1;3205:201:0;;;;;:::i;:::-;;:::i;34210:31::-;;;;;;;;;;;;;;;;33335:24;;;;;;;;;;;;;;;;51145:1056;;;;;;;;;;-1:-1:-1;51145:1056:0;;;;;:::i;:::-;;:::i;9712:100::-;9766:13;9799:5;9792:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9712:100;:::o;11879:169::-;11962:4;11979:39;1049:10;12002:7;12011:6;11979:8;:39::i;:::-;-1:-1:-1;12036:4:0;11879:169;;;;:::o;41532:157::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;;;;;;;;;41639:9:::1;::::0;41611:38:::1;::::0;41639:9:::1;::::0;;::::1;::::0;41611:38;::::1;::::0;::::1;::::0;41639:9:::1;::::0;41611:38:::1;41660:9;:21:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;41532:157::o;38989:275::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;39126:4:::1;39118;39097:13;10920:12:::0;;;10832:108;39097:13:::1;:17;::::0;39113:1:::1;39097:17;:::i;:::-;39096:26;;;;:::i;:::-;39095:35;;;;:::i;:::-;39085:6;:45;;39063:142;;;::::0;::::1;::::0;;6515:2:1;39063:142:0::1;::::0;::::1;6497:21:1::0;6554:2;6534:18;;;6527:30;6593:34;6573:18;;;6566:62;6664:17;6644:18;;;6637:45;6699:19;;39063:142:0::1;6313:411:1::0;39063:142:0::1;39239:17;:6:::0;39249::::1;39239:17;:::i;:::-;39216:20;:40:::0;-1:-1:-1;38989:275:0:o;12530:492::-;12670:4;12687:36;12697:6;12705:9;12716:6;12687:9;:36::i;:::-;12763:19;;;12736:24;12763:19;;;:11;:19;;;;;;;;1049:10;12763:33;;;;;;;;12815:26;;;;12807:79;;;;;;;6931:2:1;12807:79:0;;;6913:21:1;6970:2;6950:18;;;6943:30;7009:34;6989:18;;;6982:62;7080:10;7060:18;;;7053:38;7108:19;;12807:79:0;6729:404:1;12807:79:0;12922:57;12931:6;1049:10;12972:6;12953:16;:25;12922:8;:57::i;:::-;-1:-1:-1;13010:4:0;;12530:492;-1:-1:-1;;;;12530:492:0:o;13431:215::-;1049:10;13519:4;13568:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;13519:4;;13536:80;;13559:7;;13568:47;;13605:10;;13568:47;:::i;:::-;13536:8;:80::i;2947:103::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;3012:30:::1;3039:1;3012:18;:30::i;:::-;2947:103::o:0;49786:555::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;49988:3:::1;49965:19;:26;;49943:127;;;::::0;::::1;::::0;;7473:2:1;49943:127:0::1;::::0;::::1;7455:21:1::0;7512:2;7492:18;;;7485:30;7551:34;7531:18;;;7524:62;7622:21;7602:18;;;7595:49;7661:19;;49943:127:0::1;7271:415:1::0;49943:127:0::1;50115:4;50103:8;:16;;:33;;;;-1:-1:-1::0;50123:13:0;50103:33:::1;50081:131;;;::::0;::::1;::::0;;7893:2:1;50081:131:0::1;::::0;::::1;7875:21:1::0;7932:2;7912:18;;;7905:30;7971:34;7951:18;;;7944:62;8042:18;8022;;;8015:46;8078:19;;50081:131:0::1;7691:412:1::0;50081:131:0::1;50223:15;:37:::0;;;;50271:16:::1;:27:::0;50309:13:::1;:24:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;49786:555::o;38097:121::-;2369:6;;38149:4;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;-1:-1:-1;38166:14:0::1;:22:::0;;;::::1;::::0;;;38097:121;:::o;39536:167::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;39649:39:::1;::::0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;39536:167::o;39907:332::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;40057:15:::1;:31:::0;;;40099:15:::1;:31:::0;;;40141:9:::1;:19:::0;;;40153:7;40186:33:::1;40117:13:::0;40075;40186:33:::1;:::i;:::-;:45;;;;:::i;:::-;40171:12;:60:::0;-1:-1:-1;;;39907:332:0:o;37890:155::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;37945:13:::1;:20:::0;;37976:18;;;;;;38022:15:::1;38005:14;:32:::0;37890:155::o;39799:100::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;39870:11:::1;:21:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;39799:100::o;9931:104::-;9987:13;10020:7;10013:14;;;;;:::i;40785:304::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;40929:13:::1;40921:21;;:4;:21;;;;40899:128;;;::::0;::::1;::::0;;8310:2:1;40899:128:0::1;::::0;::::1;8292:21:1::0;8349:2;8329:18;;;8322:30;8388:34;8368:18;;;8361:62;8459:27;8439:18;;;8432:55;8504:19;;40899:128:0::1;8108:421:1::0;40899:128:0::1;41040:41;41069:4;41075:5;41040:28;:41::i;:::-;40785:304:::0;;:::o;14149:413::-;1049:10;14242:4;14286:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;14339:35;;;;14331:85;;;;;;;8736:2:1;14331:85:0;;;8718:21:1;8775:2;8755:18;;;8748:30;8814:34;8794:18;;;8787:62;8885:7;8865:18;;;8858:35;8910:19;;14331:85:0;8534:401:1;14331:85:0;14452:67;1049:10;14475:7;14503:15;14484:16;:34;14452:8;:67::i;:::-;-1:-1:-1;14550:4:0;;14149:413;-1:-1:-1;;;14149:413:0:o;11343:175::-;11429:4;11446:42;1049:10;11470:9;11481:6;11446:9;:42::i;41293:231::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;41453:15:::1;::::0;41410:59:::1;::::0;41453:15:::1;::::0;;::::1;::::0;41410:59;::::1;::::0;::::1;::::0;41453:15:::1;::::0;41410:59:::1;41480:15;:36:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;41293:231::o;40595:182::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;40680:28:::1;::::0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;40735:34;;1294:41:1;;;40735:34:0::1;::::0;1267:18:1;40735:34:0::1;;;;;;;40595:182:::0;;:::o;40247:340::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;40398:16:::1;:32:::0;;;40441:16:::1;:32:::0;;;40484:10:::1;:20:::0;;;40497:7;40531:35:::1;40460:13:::0;40417;40531:35:::1;:::i;:::-;:48;;;;:::i;:::-;40515:13;:64:::0;-1:-1:-1;;;40247:340:0:o;39272:256::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;39412:4:::1;39404;39383:13;10920:12:::0;;;10832:108;39383:13:::1;:17;::::0;39399:1:::1;39383:17;:::i;:::-;39382:26;;;;:::i;:::-;39381:35;;;;:::i;:::-;39371:6;:45;;39349:131;;;::::0;::::1;::::0;;9142:2:1;39349:131:0::1;::::0;::::1;9124:21:1::0;9181:2;9161:18;;;9154:30;9220:34;9200:18;;;9193:62;9291:6;9271:18;;;9264:34;9315:19;;39349:131:0::1;8940:400:1::0;39349:131:0::1;39503:17;:6:::0;39513::::1;39503:17;:::i;:::-;39491:9;:29:::0;-1:-1:-1;39272:256:0:o;38484:497::-;2369:6;;38592:4;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;38671:6:::1;38650:13;10920:12:::0;;;10832:108;38650:13:::1;:17;::::0;38666:1:::1;38650:17;:::i;:::-;38649:28;;;;:::i;:::-;38636:9;:41;;38614:144;;;::::0;::::1;::::0;;9547:2:1;38614:144:0::1;::::0;::::1;9529:21:1::0;9586:2;9566:18;;;9559:30;9625:34;9605:18;;;9598:62;9696:23;9676:18;;;9669:51;9737:19;;38614:144:0::1;9345:417:1::0;38614:144:0::1;38826:4;38805:13;10920:12:::0;;;10832:108;38805:13:::1;:17;::::0;38821:1:::1;38805:17;:::i;:::-;38804:26;;;;:::i;:::-;38791:9;:39;;38769:141;;;::::0;::::1;::::0;;9969:2:1;38769:141:0::1;::::0;::::1;9951:21:1::0;10008:2;9988:18;;;9981:30;10047:34;10027:18;;;10020:62;10118:22;10098:18;;;10091:50;10158:19;;38769:141:0::1;9767:416:1::0;38769:141:0::1;-1:-1:-1::0;38921:18:0::1;:30:::0;;;38969:4:::1;2587:1;38484:497:::0;;;:::o;38279:135::-;2369:6;;38339:4;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;-1:-1:-1;38356:20:0::1;:28:::0;;;::::1;::::0;;;38279:135;:::o;3205:201::-;2369:6;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;3294:22:::1;::::0;::::1;3286:73;;;::::0;::::1;::::0;;10390:2:1;3286:73:0::1;::::0;::::1;10372:21:1::0;10429:2;10409:18;;;10402:30;10468:34;10448:18;;;10441:62;10539:8;10519:18;;;10512:36;10565:19;;3286:73:0::1;10188:402:1::0;3286:73:0::1;3370:28;3389:8;3370:18;:28::i;:::-;3205:201:::0;:::o;51145:1056::-;2369:6;;51256:4;;2516:23;2369:6;1049:10;2516:23;2508:68;;;;;;;5453:2:1;2508:68:0;;;5435:21:1;;;5472:18;;;5465:30;5531:34;5511:18;;;5504:62;5583:18;;2508:68:0;5251:356:1;2508:68:0;51341:19:::1;;51318:20;;:42;;;;:::i;:::-;51300:15;:60;51278:142;;;::::0;::::1;::::0;;10797:2:1;51278:142:0::1;::::0;::::1;10779:21:1::0;;;10816:18;;;10809:30;10875:34;10855:18;;;10848:62;10927:18;;51278:142:0::1;10595:356:1::0;51278:142:0::1;51450:4;51439:7;:15;;51431:70;;;::::0;::::1;::::0;;11158:2:1;51431:70:0::1;::::0;::::1;11140:21:1::0;11197:2;11177:18;;;11170:30;11236:34;11216:18;;;11209:62;11307:12;11287:18;;;11280:40;11337:19;;51431:70:0::1;10956:406:1::0;51431:70:0::1;51535:15;51512:20;:38:::0;51636:29:::1;::::0;;;;1801:42:1;51651:13:0::1;1789:55:1::0;51636:29:0::1;::::0;::::1;1771:74:1::0;51605:28:0::1;::::0;51636:4:::1;::::0;:14:::1;::::0;1744:18:1;;51636:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51605:60:::0;-1:-1:-1;51715:20:0::1;51738:44;51776:5;51738:33;51605:60:::0;51763:7;51738:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;51715:67:::0;-1:-1:-1;51887:16:0;;51883:110:::1;;51920:61;51936:13;51959:6;51968:12;51920:15;:61::i;:::-;52068:19;52105:13;52068:51;;52130:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;52157:14:0::1;::::0;::::1;::::0;-1:-1:-1;52157:14:0;;-1:-1:-1;52157:14:0::1;-1:-1:-1::0;52189:4:0::1;::::0;51145:1056;-1:-1:-1;;;;51145:1056:0:o;17833:380::-;17969:19;;;17961:68;;;;;;;11758:2:1;17961:68:0;;;11740:21:1;11797:2;11777:18;;;11770:30;11836:34;11816:18;;;11809:62;11907:6;11887:18;;;11880:34;11931:19;;17961:68:0;11556:400:1;17961:68:0;18048:21;;;18040:68;;;;;;;12163:2:1;18040:68:0;;;12145:21:1;12202:2;12182:18;;;12175:30;12241:34;12221:18;;;12214:62;12312:4;12292:18;;;12285:32;12334:19;;18040:68:0;11961:398:1;18040:68:0;18121:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18173:32;;2002:25:1;;;18173:32:0;;1975:18:1;18173:32:0;;;;;;;17833:380;;;:::o;41881:5011::-;42013:18;;;42005:68;;;;;;;12566:2:1;42005:68:0;;;12548:21:1;12605:2;12585:18;;;12578:30;12644:34;12624:18;;;12617:62;12715:7;12695:18;;;12688:35;12740:19;;42005:68:0;12364:401:1;42005:68:0;42092:16;;;42084:64;;;;;;;12972:2:1;42084:64:0;;;12954:21:1;13011:2;12991:18;;;12984:30;13050:34;13030:18;;;13023:62;13121:5;13101:18;;;13094:33;13144:19;;42084:64:0;12770:399:1;42084:64:0;42165:11;42161:93;;42193:28;42209:4;42215:2;42219:1;42193:15;:28::i;:::-;41881:5011;;;:::o;42161:93::-;42270:14;;;;42266:2487;;;2369:6;;;42323:15;;;2369:6;;42323:15;;;;:49;;-1:-1:-1;2369:6:0;;;42359:13;;;2369:6;;42359:13;;42323:49;:86;;;;-1:-1:-1;42393:16:0;;;;;42323:86;:128;;;;-1:-1:-1;42430:21:0;;;42444:6;42430:21;;42323:128;:158;;;;-1:-1:-1;42473:8:0;;;;;;;42472:9;42323:158;42301:2441;;;42521:13;;;;;;;42516:223;;42593:25;;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;42622:23:0;;;;;;;:19;:23;;;;;;;;42593:52;42559:160;;;;;;;13376:2:1;42559:160:0;;;13358:21:1;13415:2;13395:18;;;13388:30;13454:24;13434:18;;;13427:52;13496:18;;42559:160:0;13174:346:1;42559:160:0;42895:20;;;;42891:641;;;2369:6;;;42970:13;;;2369:6;;42970:13;;;;:72;;;43026:15;43012:30;;:2;:30;;;;42970:72;:129;;;;;43085:13;43071:28;;:2;:28;;;;42970:129;42940:573;;;43217:9;43188:39;;;;:28;:39;;;;;;43263:12;-1:-1:-1;43150:258:0;;;;;;;13727:2:1;43150:258:0;;;13709:21:1;13766:2;13746:18;;;13739:30;13805:34;13785:18;;;13778:62;13876:34;13856:18;;;13849:62;13948:11;13927:19;;;13920:40;13977:19;;43150:258:0;13525:477:1;43150:258:0;43464:9;43435:39;;;;:28;:39;;;;;43477:12;43435:54;;42940:573;43606:31;;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;43663:35:0;;;;;;;:31;:35;;;;;;;;43662:36;43606:92;43580:1147;;;43785:20;;43775:6;:30;;43741:169;;;;;;;14209:2:1;43741:169:0;;;14191:21:1;14248:2;14228:18;;;14221:30;14287:34;14267:18;;;14260:62;14358:23;14338:18;;;14331:51;14399:19;;43741:169:0;14007:417:1;43741:169:0;43993:9;;11104:18;;;11077:7;11104:18;;;;;;;;;;;43967:22;;:6;:22;:::i;:::-;:35;;43933:140;;;;;;;14631:2:1;43933:140:0;;;14613:21:1;14670:2;14650:18;;;14643:30;14709:21;14689:18;;;14682:49;14748:18;;43933:140:0;14429:343:1;43933:140:0;43580:1147;;;44171:29;;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;44226:37:0;;;;;;;:31;:37;;;;;;;;44225:38;44171:92;44145:582;;;44350:20;;44340:6;:30;;44306:170;;;;;;;14979:2:1;44306:170:0;;;14961:21:1;15018:2;14998:18;;;14991:30;15057:34;15037:18;;;15030:62;15128:24;15108:18;;;15101:52;15170:19;;44306:170:0;14777:418:1;44145:582:0;44507:35;;;;;;;:31;:35;;;;;;;;44502:225;;44627:9;;11104:18;;;11077:7;11104:18;;;;;;;;;;;44601:22;;:6;:22;:::i;:::-;:35;;44567:140;;;;;;;14631:2:1;44567:140:0;;;14613:21:1;14670:2;14650:18;;;14643:30;14709:21;14689:18;;;14682:49;14748:18;;44567:140:0;14429:343:1;44567:140:0;44814:4;44765:28;11104:18;;;;;;;;;;;44872;;44848:42;;;;;;;44921:35;;-1:-1:-1;44945:11:0;;;;;;;44921:35;:61;;;;-1:-1:-1;44974:8:0;;;;;;;44973:9;44921:61;:110;;;;-1:-1:-1;45000:31:0;;;;;;;:25;:31;;;;;;;;44999:32;44921:110;:153;;;;-1:-1:-1;45049:25:0;;;;;;;:19;:25;;;;;;;;45048:26;44921:153;:194;;;;-1:-1:-1;45092:23:0;;;;;;;:19;:23;;;;;;;;45091:24;44921:194;44903:326;;;45142:8;:15;;;;;;;;45174:10;:8;:10::i;:::-;45201:8;:16;;;;;;44903:326;45260:8;;;;;;;45259:9;:55;;;;-1:-1:-1;45285:29:0;;;;;;;:25;:29;;;;;;;;45259:55;:85;;;;-1:-1:-1;45331:13:0;;;;45259:85;:153;;;;;45397:15;;45380:14;;:32;;;;:::i;:::-;45361:15;:51;;45259:153;:196;;;;-1:-1:-1;45430:25:0;;;;;;;:19;:25;;;;;;;;45429:26;45259:196;45241:282;;;45482:29;:27;:29::i;:::-;;45241:282;45551:8;;45661:25;;;45535:12;45661:25;;;:19;:25;;;;;;45551:8;;;;;;;45550:9;;45661:25;;:52;;-1:-1:-1;45690:23:0;;;;;;;:19;:23;;;;;;;;45661:52;45657:100;;;-1:-1:-1;45740:5:0;45657:100;45769:12;45874:7;45870:969;;;45926:29;;;;;;;:25;:29;;;;;;;;:50;;;;;45975:1;45959:13;;:17;45926:50;45922:768;;;46004:34;46034:3;46004:25;46015:13;;46004:6;:10;;:25;;;;:::i;:34::-;45997:41;;46107:13;;46087:16;;46080:4;:23;;;;:::i;:::-;46079:41;;;;:::i;:::-;46057:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;46177:13:0;;46163:10;;46156:17;;:4;:17;:::i;:::-;46155:35;;;;:::i;:::-;46139:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;46259:13:0;;46239:16;;46232:23;;:4;:23;:::i;:::-;46231:41;;;;:::i;:::-;46209:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45922:768:0;;-1:-1:-1;45922:768:0;;46334:31;;;;;;;:25;:31;;;;;;;;:51;;;;;46384:1;46369:12;;:16;46334:51;46330:360;;;46413:33;46442:3;46413:24;46424:12;;46413:6;:10;;:24;;;;:::i;:33::-;46406:40;;46514:12;;46495:15;;46488:4;:22;;;;:::i;:::-;46487:39;;;;:::i;:::-;46465:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46582:12:0;;46569:9;;46562:16;;:4;:16;:::i;:::-;46561:33;;;;:::i;:::-;46545:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46662:12:0;;46643:15;;46636:22;;:4;:22;:::i;:::-;46635:39;;;;:::i;:::-;46613:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46330:360:0;46710:8;;46706:91;;46739:42;46755:4;46769;46776;46739:15;:42::i;:::-;46813:14;46823:4;46813:14;;:::i;:::-;;;45870:969;46851:33;46867:4;46873:2;46877:6;46851:15;:33::i;:::-;41994:4898;;;;41881:5011;;;:::o;3566:191::-;3659:6;;;;3676:17;;;;;;;;;;;3709:40;;3659:6;;;3676:17;3659:6;;3709:40;;3640:16;;3709:40;3629:128;3566:191;:::o;41097:188::-;41180:31;;;;;;;:25;:31;;;;;;:39;;;;;;;;;;;;;41237:40;;41180:39;;:31;41237:40;;;41097:188;;:::o;23286:98::-;23344:7;23371:5;23375:1;23371;:5;:::i;:::-;23364:12;23286:98;-1:-1:-1;;;23286:98:0:o;23685:::-;23743:7;23770:5;23774:1;23770;:5;:::i;15052:733::-;15192:20;;;15184:70;;;;;;;12566:2:1;15184:70:0;;;12548:21:1;12605:2;12585:18;;;12578:30;12644:34;12624:18;;;12617:62;12715:7;12695:18;;;12688:35;12740:19;;15184:70:0;12364:401:1;15184:70:0;15273:23;;;15265:71;;;;;;;12972:2:1;15265:71:0;;;12954:21:1;13011:2;12991:18;;;12984:30;13050:34;13030:18;;;13023:62;13121:5;13101:18;;;13094:33;13144:19;;15265:71:0;12770:399:1;15265:71:0;15433:17;;;15409:21;15433:17;;;;;;;;;;;15469:23;;;;15461:74;;;;;;;15532:2:1;15461:74:0;;;15514:21:1;15571:2;15551:18;;;15544:30;15610:34;15590:18;;;15583:62;15681:8;15661:18;;;15654:36;15707:19;;15461:74:0;15330:402:1;15461:74:0;15571:17;;;;:9;:17;;;;;;;;;;;15591:22;;;15571:42;;15635:20;;;;;;;;:30;;15607:6;;15571:9;15635:30;;15607:6;;15635:30;:::i;:::-;;;;;;;;15700:9;15683:35;;15692:6;15683:35;;;15711:6;15683:35;;;;2002:25:1;;1990:2;1975:18;;1856:177;15683:35:0;;;;;;;;15173:612;15052:733;;;:::o;48022:1756::-;48105:4;48061:23;11104:18;;;;;;;;;;;48061:50;;48122:25;48218:12;;48184:18;;48150;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48122:108;-1:-1:-1;48241:12:0;48270:20;;;:46;;-1:-1:-1;48294:22:0;;48270:46;48266:85;;;48333:7;;;48022:1756::o;48266:85::-;48385:18;;:23;;48406:2;48385:23;:::i;:::-;48367:15;:41;48363:115;;;48443:18;;:23;;48464:2;48443:23;:::i;:::-;48425:41;;48363:115;48539:23;48652:1;48619:17;48584:18;;48566:15;:36;;;;:::i;:::-;48565:71;;;;:::i;:::-;:88;;;;:::i;:::-;48539:114;-1:-1:-1;48664:26:0;48693:36;:15;48539:114;48693:19;:36::i;:::-;48664:65;-1:-1:-1;48770:21:0;48804:36;48664:65;48804:16;:36::i;:::-;48853:18;48874:44;:21;48900:17;48874:25;:44::i;:::-;48853:65;;48931:23;48957:81;49010:17;48957:34;48972:18;;48957:10;:14;;:34;;;;:::i;:81::-;48931:107;;49049:17;49069:51;49102:17;49069:28;49084:12;;49069:10;:14;;:28;;;;:::i;:51::-;49049:71;-1:-1:-1;49133:23:0;49049:71;49159:28;49172:15;49159:10;:28;:::i;:::-;:40;;;;:::i;:::-;49233:1;49212:18;:22;;;49245:18;:22;;;49278:12;:16;;;49329:9;;49321:45;;49133:66;;-1:-1:-1;49329:9:0;;;49352;;49321:45;49233:1;49321:45;49352:9;49329;49321:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49307:59:0;;-1:-1:-1;;49383:19:0;;;;;:42;;;49424:1;49406:15;:19;49383:42;49379:278;;;49442:46;49455:15;49472;49442:12;:46::i;:::-;49612:18;;49508:137;;;16149:25:1;;;16205:2;16190:18;;16183:34;;;16233:18;;;16226:34;;;;49508:137:0;;;;;;16137:2:1;49508:137:0;;;49379:278;49691:15;;49683:87;;49691:15;;;;;49734:21;;49683:87;;;;49734:21;49691:15;49683:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;48022:1756:0:o;50349:788::-;50440:15;50423:14;:32;50541:29;;;;;1801:42:1;50556:13:0;1789:55:1;50541:29:0;;;1771:74:1;50406:4:0;;;;50541;;:14;;1744:18:1;;50541:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50510:60;;50620:20;50643:77;50704:5;50643:42;50668:16;;50643:20;:24;;:42;;;;:::i;:77::-;50620:100;-1:-1:-1;50825:16:0;;50821:110;;50858:61;50874:13;50897:6;50906:12;50858:15;:61::i;:::-;51006:19;51043:13;51006:51;;51068:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51095:12:0;;;;-1:-1:-1;51095:12:0;;-1:-1:-1;51095:12:0;51125:4;51118:11;;;;;50349:788;:::o;22929:98::-;22987:7;23014:5;23018:1;23014;:5;:::i;46900:589::-;47050:16;;;47064:1;47050:16;;;;;;;;47026:21;;47050:16;;;;;;;;;;-1:-1:-1;47050:16:0;47026:40;;47095:4;47077;47082:1;47077:7;;;;;;;;:::i;:::-;;;;;;:23;;;;;;;;;;;47121:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47111:4;47116:1;47111:7;;;;;;;;:::i;:::-;;;;;;:32;;;;;;;;;;;47156:62;47173:4;47188:15;47206:11;47156:8;:62::i;:::-;47257:224;;;;;:66;:15;:66;;;;:224;;47338:11;;47364:1;;47408:4;;47435;;47455:15;;47257:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46955:534;46900:589;:::o;47497:517::-;47645:62;47662:4;47677:15;47695:11;47645:8;:62::i;:::-;47750:256;;;;;47822:4;47750:256;;;18300:34:1;18350:18;;;18343:34;;;47868:1:0;18393:18:1;;;18386:34;;;18436:18;;;18429:34;33137:6:0;18479:19:1;;;18472:44;47980:15:0;18532:19:1;;;18525:35;47750:15:0;:31;;;;;47789:9;;18211:19:1;;47750:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47497:517;;:::o;14:656:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;586:2:1;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:1:o;675:154::-;761:42;754:5;750:54;743:5;740:65;730:93;;819:1;816;809:12;834:315;902:6;910;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1018:9;1005:23;1037:31;1062:5;1037:31;:::i;:::-;1087:5;1139:2;1124:18;;;;1111:32;;-1:-1:-1;;;834:315:1:o;1346:247::-;1405:6;1458:2;1446:9;1437:7;1433:23;1429:32;1426:52;;;1474:1;1471;1464:12;1426:52;1513:9;1500:23;1532:31;1557:5;1532:31;:::i;2038:180::-;2097:6;2150:2;2138:9;2129:7;2125:23;2121:32;2118:52;;;2166:1;2163;2156:12;2118:52;-1:-1:-1;2189:23:1;;2038:180;-1:-1:-1;2038:180:1:o;2223:456::-;2300:6;2308;2316;2369:2;2357:9;2348:7;2344:23;2340:32;2337:52;;;2385:1;2382;2375:12;2337:52;2424:9;2411:23;2443:31;2468:5;2443:31;:::i;:::-;2493:5;-1:-1:-1;2550:2:1;2535:18;;2522:32;2563:33;2522:32;2563:33;:::i;:::-;2223:456;;2615:7;;-1:-1:-1;;;2669:2:1;2654:18;;;;2641:32;;2223:456::o;3104:160::-;3169:20;;3225:13;;3218:21;3208:32;;3198:60;;3254:1;3251;3244:12;3269:316;3343:6;3351;3359;3412:2;3400:9;3391:7;3387:23;3383:32;3380:52;;;3428:1;3425;3418:12;3380:52;3464:9;3451:23;3441:33;;3521:2;3510:9;3506:18;3493:32;3483:42;;3544:35;3575:2;3564:9;3560:18;3544:35;:::i;:::-;3534:45;;3269:316;;;;;:::o;3590:315::-;3655:6;3663;3716:2;3704:9;3695:7;3691:23;3687:32;3684:52;;;3732:1;3729;3722:12;3684:52;3771:9;3758:23;3790:31;3815:5;3790:31;:::i;:::-;3840:5;-1:-1:-1;3864:35:1;3895:2;3880:18;;3864:35;:::i;:::-;3854:45;;3590:315;;;;;:::o;3910:316::-;3987:6;3995;4003;4056:2;4044:9;4035:7;4031:23;4027:32;4024:52;;;4072:1;4069;4062:12;4024:52;-1:-1:-1;;4095:23:1;;;4165:2;4150:18;;4137:32;;-1:-1:-1;4216:2:1;4201:18;;;4188:32;;3910:316;-1:-1:-1;3910:316:1:o;4231:180::-;4287:6;4340:2;4328:9;4319:7;4315:23;4311:32;4308:52;;;4356:1;4353;4346:12;4308:52;4379:26;4395:9;4379:26;:::i;4416:388::-;4484:6;4492;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;4600:9;4587:23;4619:31;4644:5;4619:31;:::i;:::-;4669:5;-1:-1:-1;4726:2:1;4711:18;;4698:32;4739:33;4698:32;4739:33;:::i;:::-;4791:7;4781:17;;;4416:388;;;;;:::o;4809:437::-;4888:1;4884:12;;;;4931;;;4952:61;;5006:4;4998:6;4994:17;4984:27;;4952:61;5059:2;5051:6;5048:14;5028:18;5025:38;5022:218;;;5096:77;5093:1;5086:88;5197:4;5194:1;5187:15;5225:4;5222:1;5215:15;5022:218;;4809:437;;;:::o;5612:184::-;5664:77;5661:1;5654:88;5761:4;5758:1;5751:15;5785:4;5782:1;5775:15;5801:228;5841:7;5967:1;5899:66;5895:74;5892:1;5889:81;5884:1;5877:9;5870:17;5866:105;5863:131;;;5974:18;;:::i;:::-;-1:-1:-1;6014:9:1;;5801:228::o;6034:274::-;6074:1;6100;6090:189;;6135:77;6132:1;6125:88;6236:4;6233:1;6226:15;6264:4;6261:1;6254:15;6090:189;-1:-1:-1;6293:9:1;;6034:274::o;7138:128::-;7178:3;7209:1;7205:6;7202:1;7199:13;7196:39;;;7215:18;;:::i;:::-;-1:-1:-1;7251:9:1;;7138:128::o;11367:184::-;11437:6;11490:2;11478:9;11469:7;11465:23;11461:32;11458:52;;;11506:1;11503;11496:12;11458:52;-1:-1:-1;11529:16:1;;11367:184;-1:-1:-1;11367:184:1:o;15200:125::-;15240:4;15268:1;15265;15262:8;15259:34;;;15273:18;;:::i;:::-;-1:-1:-1;15310:9:1;;15200:125::o;16460:184::-;16512:77;16509:1;16502:88;16609:4;16606:1;16599:15;16633:4;16630:1;16623:15;16649:251;16719:6;16772:2;16760:9;16751:7;16747:23;16743:32;16740:52;;;16788:1;16785;16778:12;16740:52;16820:9;16814:16;16839:31;16864:5;16839:31;:::i;16905:1026::-;17167:4;17215:3;17204:9;17200:19;17246:6;17235:9;17228:25;17272:2;17310:6;17305:2;17294:9;17290:18;17283:34;17353:3;17348:2;17337:9;17333:18;17326:31;17377:6;17412;17406:13;17443:6;17435;17428:22;17481:3;17470:9;17466:19;17459:26;;17520:2;17512:6;17508:15;17494:29;;17541:1;17551:218;17565:6;17562:1;17559:13;17551:218;;;17630:13;;17645:42;17626:62;17614:75;;17744:15;;;;17709:12;;;;17587:1;17580:9;17551:218;;;-1:-1:-1;;17837:42:1;17825:55;;;;17820:2;17805:18;;17798:83;-1:-1:-1;;;17912:3:1;17897:19;17890:35;17786:3;16905:1026;-1:-1:-1;;;16905:1026:1:o;18571:306::-;18659:6;18667;18675;18728:2;18716:9;18707:7;18703:23;18699:32;18696:52;;;18744:1;18741;18734:12;18696:52;18773:9;18767:16;18757:26;;18823:2;18812:9;18808:18;18802:25;18792:35;;18867:2;18856:9;18852:18;18846:25;18836:35;;18571:306;;;;;:::o
Swarm Source
ipfs://a1aa35103d9642c04455df0cf87cb7f06d472ebaacb19286bee6a5d7d2969cf9
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.