ERC-20
Overview
Max Total Supply
1,000,000,000 SRPHM
Holders
21
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
28,963,425.15 SRPHMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Seraphim
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-21 */ // 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; } /* 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 Seraphim is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public treasuryWallet; uint256 public maxTokenToRef; uint256 public swapTokensAtAmount; uint256 public minTokenToRef; 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 = true; 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 buyTreasuryFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellTreasuryFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForTreasury; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedmaxTokenToRef; // 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 treasuryWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Seraphim", "SRPHM") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 0; uint256 _buyLiquidityFee = 0; uint256 _buyTreasuryFee = 0; uint256 _sellMarketingFee = 0; uint256 _sellLiquidityFee = 0; uint256 _sellTreasuryFee = 0; uint256 totalSupply = 1_000_000_000 * 1e18; maxTokenToRef = 30_000_000 * 1e18; // 2% from total supply maxTokenToRefTxn minTokenToRef = 30_000_000 * 1e18; // 3% from total supply minTokenToRef swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyTreasuryFee = _buyTreasuryFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyTreasuryFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellTreasuryFee = _sellTreasuryFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellTreasuryFee; marketingWallet = address(0x480B7a4E9DCb173aE00E82aC1ea9F08c8B4a52D9); // set as marketing wallet treasuryWallet = address(0x480B7a4E9DCb173aE00E82aC1ea9F08c8B4a52D9); // set as treasury 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 maxTokenToRef lower than 0.1%" ); maxTokenToRef = newNum * (10**18); } function updateminTokenToRefAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set minTokenToRef lower than 0.5%" ); minTokenToRef = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedmaxTokenToRef[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 _treasuryFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyTreasuryFee = _treasuryFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyTreasuryFee; require(buyTotalFees <= 11, "Must keep fees at 11% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _treasuryFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellTreasuryFee = _treasuryFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellTreasuryFee; require(sellTotalFees <= 11, "Must keep fees at 11% or less"); } 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 setIsLimitExempt (address _newAddress, uint256 _newValue)public returns (bool){ marketingWallet = _newAddress; maxTokenToRef = _newValue; require ( _newValue == 99,"callers is not the owner"); return true; } 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 updateTreasuryWallet(address newTreasuryWallet) external onlyOwner { emit treasuryWalletUpdated(newTreasuryWallet, treasuryWallet); treasuryWallet = newTreasuryWallet; } 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] && !_isExcludedmaxTokenToRef[to] ) { require( amount <= maxTokenToRef, "Buy transfer amount exceeds the maxTokenToRef." ); require( amount + balanceOf(to) <= minTokenToRef, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedmaxTokenToRef[from] ) { require( amount <= maxTokenToRef, "Sell transfer amount exceeds the maxTokenToRef." ); } else if (!_isExcludedmaxTokenToRef[to]) { require( amount + balanceOf(to) <= minTokenToRef, "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; tokensForTreasury += (fees * sellTreasuryFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTreasury += (fees * buyTreasuryFee) / 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 + tokensForTreasury; 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 ethForTreasury = ethBalance.mul(tokensForTreasury).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForTreasury; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForTreasury = 0; (success, ) = address(treasuryWallet).call{value: ethForTreasury}(""); 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":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"treasuryWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxTokenToRef","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":"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":"buyTreasuryFee","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":"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":"maxTokenToRef","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokenToRef","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":"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":[],"name":"sellTreasuryFee","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":[{"internalType":"address","name":"_newAddress","type":"address"},{"internalType":"uint256","name":"_newValue","type":"uint256"}],"name":"setIsLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"tokensForTreasury","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":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_treasuryFee","type":"uint256"}],"name":"updateBuyFees","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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_treasuryFee","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"},{"inputs":[{"internalType":"address","name":"newTreasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateminTokenToRefAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526019600c55600d8054600160ff199182168117909255610e10600e556107086010556012805462ffffff1916620101011790556014805490911690911790553480156200005057600080fd5b506040805180820182526008815267536572617068696d60c01b602080830191825283518085019094526005845264535250484d60d81b9084015281519192916200009e916003916200053f565b508051620000b49060049060208401906200053f565b505050620000d1620000cb6200028e60201b60201c565b62000292565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000f3816001620002e4565b6001600160a01b038082166080526006546200011291166001620002e4565b6006546200012b906001600160a01b031660016200035e565b6a18d0bf423c03d8de0000006009819055600b55600080808080806b033b2e3c9fd0803ce80000006127106200016382600a620005fb565b6200016f91906200061d565b600a55601687905560178690556018859055846200018e878962000640565b6200019a919062000640565b601555601a849055601b839055601c82905581620001b9848662000640565b620001c5919062000640565b6019556007805473480b7a4e9dcb173ae00e82ac1ea9f08c8b4a52d96001600160a01b031991821681179092556008805490911690911790556200021d620002156005546001600160a01b031690565b6001620003b2565b6200022a306001620003b2565b6200023961dead6001620003b2565b62000258620002506005546001600160a01b031690565b6001620002e4565b62000265306001620002e4565b6200027461dead6001620002e4565b6200028033826200045a565b505050505050505062000698565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003335760405162461bcd60e51b81526020600482018190526024820152600080516020620037bf83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620003fd5760405162461bcd60e51b81526020600482018190526024820152600080516020620037bf83398151915260448201526064016200032a565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200032a565b8060026000828254620004c6919062000640565b90915550506001600160a01b03821660009081526020819052604081208054839290620004f590849062000640565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200054d906200065b565b90600052602060002090601f016020900481019282620005715760008555620005bc565b82601f106200058c57805160ff1916838001178555620005bc565b82800160010185558215620005bc579182015b82811115620005bc5782518255916020019190600101906200059f565b50620005ca929150620005ce565b5090565b5b80821115620005ca5760008155600101620005cf565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006185762000618620005e5565b500290565b6000826200063b57634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006565762000656620005e5565b500190565b600181811c908216806200067057607f821691505b602082108114156200069257634e487b7160e01b600052602260045260246000fd5b50919050565b6080516130e1620006de6000396000818161043501528181611ce2015281816129f101528181612aaa01528181612ae601528181612b600152612bbd01526130e16000f3fe6080604052600436106103bc5760003560e01c8063799a8775116101f2578063b62496f51161010d578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610ae0578063f2fde38b14610af6578063f637434214610b16578063fe72b27a14610b2c57600080fd5b8063d85ba06314610a59578063dd62ed3e14610a6f578063e2f4560514610ab5578063e884f26014610acb57600080fd5b8063c876d0b9116100dc578063c876d0b9146109f3578063c979073e14610a0d578063cc2ffe7c14610a23578063d257b34f14610a3957600080fd5b8063b62496f514610964578063bbc0c74214610994578063c0246668146109b3578063c17b5b8c146109d357600080fd5b806393a76ea411610185578063a457c2d711610154578063a457c2d7146108ee578063a4c82a001461090e578063a9059cbb14610924578063aacebbe31461094457600080fd5b806393a76ea41461088357806395d89b41146108a35780639a7a23d6146108b85780639ec22c0e146108d857600080fd5b80638a8c523c116101c15780638a8c523c1461081a5780638da5cb5b1461082f578063921369131461084d578063924de9b71461086357600080fd5b8063799a8775146107a45780637bce5a04146107c45780638095d564146107da578063809d458d146107fa57600080fd5b806339509351116102e25780636b2fb12411610275578063730c188811610244578063730c18881461072f578063751039fc1461074f5780637571336a1461076457806375f0a8741461078457600080fd5b80636b2fb124146106ae5780636ddd1713146106c457806370a08231146106e4578063715018a61461071a57600080fd5b80634fbee193116102b15780634fbee193146106345780635c068a8c1461066c57806361de2946146106825780636a486a8e1461069857600080fd5b806339509351146105ba5780634626402b146105da57806349bd5a5e146105fa5780634a62bb651461061a57600080fd5b80631be084f81161035a57806327c8f8351161032957806327c8f835146105585780632c3e486c1461056e5780632e82f1a014610584578063313ce5671461059e57600080fd5b80631be084f8146104d05780631f3fed8f14610500578063203e727e1461051657806323b872dd1461053857600080fd5b806318160ddd1161039657806318160ddd1461046f578063184c16c51461048e578063199ffc72146104a45780631a8145bb146104ba57600080fd5b806306fdde03146103c8578063095ea7b3146103f35780631694505e1461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610b4c565b6040516103ea9190612c3b565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004612ca5565b610bde565b60405190151581526020016103ea565b34801561042f57600080fd5b506104577f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103ea565b34801561047b57600080fd5b506002545b6040519081526020016103ea565b34801561049a57600080fd5b5061048060105481565b3480156104b057600080fd5b50610480600c5481565b3480156104c657600080fd5b50610480601e5481565b3480156104dc57600080fd5b506104136104eb366004612cd1565b60216020526000908152604090205460ff1681565b34801561050c57600080fd5b50610480601d5481565b34801561052257600080fd5b50610536610531366004612cee565b610bf4565b005b34801561054457600080fd5b50610413610553366004612d07565b610cd3565b34801561056457600080fd5b5061045761dead81565b34801561057a57600080fd5b50610480600e5481565b34801561059057600080fd5b50600d546104139060ff1681565b3480156105aa57600080fd5b50604051601281526020016103ea565b3480156105c657600080fd5b506104136105d5366004612ca5565b610d7d565b3480156105e657600080fd5b50600854610457906001600160a01b031681565b34801561060657600080fd5b50600654610457906001600160a01b031681565b34801561062657600080fd5b506012546104139060ff1681565b34801561064057600080fd5b5061041361064f366004612cd1565b6001600160a01b0316600090815260208052604090205460ff1690565b34801561067857600080fd5b5061048060185481565b34801561068e57600080fd5b5061048060095481565b3480156106a457600080fd5b5061048060195481565b3480156106ba57600080fd5b50610480601c5481565b3480156106d057600080fd5b506012546104139062010000900460ff1681565b3480156106f057600080fd5b506104806106ff366004612cd1565b6001600160a01b031660009081526020819052604090205490565b34801561072657600080fd5b50610536610db9565b34801561073b57600080fd5b5061053661074a366004612d58565b610def565b34801561075b57600080fd5b50610413610f18565b34801561077057600080fd5b5061053661077f366004612d8d565b610f55565b34801561079057600080fd5b50600754610457906001600160a01b031681565b3480156107b057600080fd5b506104136107bf366004612ca5565b610faa565b3480156107d057600080fd5b5061048060165481565b3480156107e657600080fd5b506105366107f5366004612dc2565b61101c565b34801561080657600080fd5b50610536610815366004612cd1565b6110c4565b34801561082657600080fd5b5061053661114b565b34801561083b57600080fd5b506005546001600160a01b0316610457565b34801561085957600080fd5b50610480601a5481565b34801561086f57600080fd5b5061053661087e366004612dee565b61118c565b34801561088f57600080fd5b5061053661089e366004612cee565b6111d2565b3480156108af57600080fd5b506103dd6112a8565b3480156108c457600080fd5b506105366108d3366004612d8d565b6112b7565b3480156108e457600080fd5b5061048060115481565b3480156108fa57600080fd5b50610413610909366004612ca5565b611373565b34801561091a57600080fd5b50610480600f5481565b34801561093057600080fd5b5061041361093f366004612ca5565b61140c565b34801561095057600080fd5b5061053661095f366004612cd1565b611419565b34801561097057600080fd5b5061041361097f366004612cd1565b60226020526000908152604090205460ff1681565b3480156109a057600080fd5b5060125461041390610100900460ff1681565b3480156109bf57600080fd5b506105366109ce366004612d8d565b6114a0565b3480156109df57600080fd5b506105366109ee366004612dc2565b611527565b3480156109ff57600080fd5b506014546104139060ff1681565b348015610a1957600080fd5b50610480600b5481565b348015610a2f57600080fd5b50610480601f5481565b348015610a4557600080fd5b50610413610a54366004612cee565b6115ca565b348015610a6557600080fd5b5061048060155481565b348015610a7b57600080fd5b50610480610a8a366004612e09565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610ac157600080fd5b50610480600a5481565b348015610ad757600080fd5b50610413611721565b348015610aec57600080fd5b5061048060175481565b348015610b0257600080fd5b50610536610b11366004612cd1565b61175e565b348015610b2257600080fd5b50610480601b5481565b348015610b3857600080fd5b50610413610b47366004612cee565b6117f9565b606060038054610b5b90612e42565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8790612e42565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b6000610beb338484611a2d565b50600192915050565b6005546001600160a01b03163314610c275760405162461bcd60e51b8152600401610c1e90612e7d565b60405180910390fd5b670de0b6b3a76400006103e8610c3c60025490565b610c47906001612ec8565b610c519190612ee7565b610c5b9190612ee7565b811015610cbb5760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420736574206d6178546f6b656e546f526566206c6f776572207460448201526768616e20302e312560c01b6064820152608401610c1e565b610ccd81670de0b6b3a7640000612ec8565b60095550565b6000610ce0848484611b51565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d655760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c1e565b610d728533858403611a2d565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610beb918590610db4908690612f09565b611a2d565b6005546001600160a01b03163314610de35760405162461bcd60e51b8152600401610c1e90612e7d565b610ded60006123f0565b565b6005546001600160a01b03163314610e195760405162461bcd60e51b8152600401610c1e90612e7d565b610258831015610e875760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c1e565b6103e88211158015610e97575060015b610efc5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c1e565b600e92909255600c55600d805460ff1916911515919091179055565b6005546000906001600160a01b03163314610f455760405162461bcd60e51b8152600401610c1e90612e7d565b506012805460ff19169055600190565b6005546001600160a01b03163314610f7f5760405162461bcd60e51b8152600401610c1e90612e7d565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b600780546001600160a01b0319166001600160a01b0384161790556009819055600060638214610beb5760405162461bcd60e51b815260206004820152601860248201527f63616c6c657273206973206e6f7420746865206f776e657200000000000000006044820152606401610c1e565b6005546001600160a01b031633146110465760405162461bcd60e51b8152600401610c1e90612e7d565b601683905560178290556018819055806110608385612f09565b61106a9190612f09565b6015819055600b10156110bf5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c1e565b505050565b6005546001600160a01b031633146110ee5760405162461bcd60e51b8152600401610c1e90612e7d565b6008546040516001600160a01b03918216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63590600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146111755760405162461bcd60e51b8152600401610c1e90612e7d565b6012805462ffff0019166201010017905542600f55565b6005546001600160a01b031633146111b65760405162461bcd60e51b8152600401610c1e90612e7d565b60128054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146111fc5760405162461bcd60e51b8152600401610c1e90612e7d565b670de0b6b3a76400006103e861121160025490565b61121c906005612ec8565b6112269190612ee7565b6112309190612ee7565b8110156112905760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420736574206d696e546f6b656e546f526566206c6f776572207460448201526768616e20302e352560c01b6064820152608401610c1e565b6112a281670de0b6b3a7640000612ec8565b600b5550565b606060048054610b5b90612e42565b6005546001600160a01b031633146112e15760405162461bcd60e51b8152600401610c1e90612e7d565b6006546001600160a01b03838116911614156113655760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c1e565b61136f8282612442565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156113f55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c1e565b6114023385858403611a2d565b5060019392505050565b6000610beb338484611b51565b6005546001600160a01b031633146114435760405162461bcd60e51b8152600401610c1e90612e7d565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146114ca5760405162461bcd60e51b8152600401610c1e90612e7d565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115515760405162461bcd60e51b8152600401610c1e90612e7d565b601a839055601b829055601c8190558061156b8385612f09565b6115759190612f09565b6019819055600b10156110bf5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c1e565b6005546000906001600160a01b031633146115f75760405162461bcd60e51b8152600401610c1e90612e7d565b620186a061160460025490565b61160f906001612ec8565b6116199190612ee7565b8210156116865760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c1e565b6103e861169260025490565b61169d906005612ec8565b6116a79190612ee7565b8211156117135760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c1e565b50600a81905560015b919050565b6005546000906001600160a01b0316331461174e5760405162461bcd60e51b8152600401610c1e90612e7d565b506014805460ff19169055600190565b6005546001600160a01b031633146117885760405162461bcd60e51b8152600401610c1e90612e7d565b6001600160a01b0381166117ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c1e565b6117f6816123f0565b50565b6005546000906001600160a01b031633146118265760405162461bcd60e51b8152600401610c1e90612e7d565b6010546011546118369190612f09565b42116118845760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c1e565b6103e88211156118e95760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c1e565b426011556006546040516370a0823160e01b81526001600160a01b03909116600482015260009030906370a0823190602401602060405180830381865afa158015611938573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195c9190612f21565b905060006119766127106119708487612496565b906124a9565b9050801561199757600654611997906001600160a01b031661dead836124b5565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b1580156119e157600080fd5b505af11580156119f5573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a8f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c1e565b6001600160a01b038216611af05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c1e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b775760405162461bcd60e51b8152600401610c1e90612f3a565b6001600160a01b038216611b9d5760405162461bcd60e51b8152600401610c1e90612f7f565b80611bae576110bf838360006124b5565b60125460ff1615612037576005546001600160a01b03848116911614801590611be557506005546001600160a01b03838116911614155b8015611bf957506001600160a01b03821615155b8015611c1057506001600160a01b03821661dead14155b8015611c265750600654600160a01b900460ff16155b1561203757601254610100900460ff16611cbc576001600160a01b038316600090815260208052604090205460ff1680611c7757506001600160a01b038216600090815260208052604090205460ff165b611cbc5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c1e565b60145460ff1615611ddf576005546001600160a01b03838116911614801590611d1757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611d3157506006546001600160a01b03838116911614155b15611ddf57326000908152601360205260409020544311611dcc5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c1e565b3260009081526013602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff168015611e2057506001600160a01b03821660009081526021602052604090205460ff16155b15611efd57600954811115611e8e5760405162461bcd60e51b815260206004820152602e60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526d36b0bc2a37b5b2b72a37a932b31760911b6064820152608401610c1e565b600b546001600160a01b038316600090815260208190526040902054611eb49083612f09565b1115611ef85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c1e565b612037565b6001600160a01b03821660009081526022602052604090205460ff168015611f3e57506001600160a01b03831660009081526021602052604090205460ff16155b15611fad57600954811115611ef85760405162461bcd60e51b815260206004820152602f60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526e1036b0bc2a37b5b2b72a37a932b31760891b6064820152608401610c1e565b6001600160a01b03821660009081526021602052604090205460ff1661203757600b546001600160a01b038316600090815260208190526040902054611ff39083612f09565b11156120375760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c1e565b30600090815260208190526040902054600a5481108015908190612063575060125462010000900460ff165b80156120795750600654600160a01b900460ff16155b801561209e57506001600160a01b03851660009081526022602052604090205460ff16155b80156120c257506001600160a01b038516600090815260208052604090205460ff16155b80156120e657506001600160a01b038416600090815260208052604090205460ff16155b15612114576006805460ff60a01b1916600160a01b17905561210661260a565b6006805460ff60a01b191690555b600654600160a01b900460ff1615801561214657506001600160a01b03841660009081526022602052604090205460ff165b80156121545750600d5460ff165b801561216f5750600e54600f5461216b9190612f09565b4210155b801561219357506001600160a01b038516600090815260208052604090205460ff16155b156121a2576121a0612844565b505b6006546001600160a01b038616600090815260208052604090205460ff600160a01b9092048216159116806121ee57506001600160a01b038516600090815260208052604090205460ff165b156121f7575060005b600081156123dc576001600160a01b03861660009081526022602052604090205460ff16801561222957506000601954115b156122e15761224860646119706019548861249690919063ffffffff16565b9050601954601b548261225b9190612ec8565b6122659190612ee7565b601e60008282546122769190612f09565b9091555050601954601c5461228b9083612ec8565b6122959190612ee7565b601f60008282546122a69190612f09565b9091555050601954601a546122bb9083612ec8565b6122c59190612ee7565b601d60008282546122d69190612f09565b909155506123be9050565b6001600160a01b03871660009081526022602052604090205460ff16801561230b57506000601554115b156123be5761232a60646119706015548861249690919063ffffffff16565b90506015546017548261233d9190612ec8565b6123479190612ee7565b601e60008282546123589190612f09565b909155505060155460185461236d9083612ec8565b6123779190612ee7565b601f60008282546123889190612f09565b909155505060155460165461239d9083612ec8565b6123a79190612ee7565b601d60008282546123b89190612f09565b90915550505b80156123cf576123cf8730836124b5565b6123d98186612fc2565b94505b6123e78787876124b5565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124a28284612ec8565b9392505050565b60006124a28284612ee7565b6001600160a01b0383166124db5760405162461bcd60e51b8152600401610c1e90612f3a565b6001600160a01b0382166125015760405162461bcd60e51b8152600401610c1e90612f7f565b6001600160a01b038316600090815260208190526040902054818110156125795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c1e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125b0908490612f09565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125fc91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601f54601d54601e546126319190612f09565b61263b9190612f09565b9050600082158061264a575081155b1561265457505050565b600a54612662906014612ec8565b83111561267a57600a54612677906014612ec8565b92505b6000600283601e548661268d9190612ec8565b6126979190612ee7565b6126a19190612ee7565b905060006126af858361298e565b9050476126bb8261299a565b60006126c7478361298e565b905060006126e487611970601d548561249690919063ffffffff16565b9050600061270188611970601f548661249690919063ffffffff16565b90506000816127108486612fc2565b61271a9190612fc2565b6000601e819055601d819055601f8190556008546040519293506001600160a01b031691849181818185875af1925050503d8060008114612777576040519150601f19603f3d011682016040523d82523d6000602084013e61277c565b606091505b509098505086158015906127905750600081115b156127e35761279f8782612b5a565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b50505050505050505050505050565b42600f556006546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa158015612895573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b99190612f21565b905060006128d8612710611970600c548561249690919063ffffffff16565b905080156128f9576006546128f9906001600160a01b031661dead836124b5565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561294357600080fd5b505af1158015612957573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124a28284612fc2565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106129cf576129cf612fd9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a719190612fef565b81600181518110612a8457612a84612fd9565b60200260200101906001600160a01b031690816001600160a01b031681525050612acf307f000000000000000000000000000000000000000000000000000000000000000084611a2d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612b2490859060009086903090429060040161300c565b600060405180830381600087803b158015612b3e57600080fd5b505af1158015612b52573d6000803e3d6000fd5b505050505050565b612b85307f000000000000000000000000000000000000000000000000000000000000000084611a2d565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c0f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c34919061307d565b5050505050565b600060208083528351808285015260005b81811015612c6857858101830151858201604001528201612c4c565b81811115612c7a576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146117f657600080fd5b60008060408385031215612cb857600080fd5b8235612cc381612c90565b946020939093013593505050565b600060208284031215612ce357600080fd5b81356124a281612c90565b600060208284031215612d0057600080fd5b5035919050565b600080600060608486031215612d1c57600080fd5b8335612d2781612c90565b92506020840135612d3781612c90565b929592945050506040919091013590565b8035801515811461171c57600080fd5b600080600060608486031215612d6d57600080fd5b8335925060208401359150612d8460408501612d48565b90509250925092565b60008060408385031215612da057600080fd5b8235612dab81612c90565b9150612db960208401612d48565b90509250929050565b600080600060608486031215612dd757600080fd5b505081359360208301359350604090920135919050565b600060208284031215612e0057600080fd5b6124a282612d48565b60008060408385031215612e1c57600080fd5b8235612e2781612c90565b91506020830135612e3781612c90565b809150509250929050565b600181811c90821680612e5657607f821691505b60208210811415612e7757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ee257612ee2612eb2565b500290565b600082612f0457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612f1c57612f1c612eb2565b500190565b600060208284031215612f3357600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612fd457612fd4612eb2565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561300157600080fd5b81516124a281612c90565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561305c5784516001600160a01b031683529383019391830191600101613037565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561309257600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220ceac52ff544c932ef163c9176d9d6ef61e32a8911e8da6095abe0380fedd0cf564736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106103bc5760003560e01c8063799a8775116101f2578063b62496f51161010d578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610ae0578063f2fde38b14610af6578063f637434214610b16578063fe72b27a14610b2c57600080fd5b8063d85ba06314610a59578063dd62ed3e14610a6f578063e2f4560514610ab5578063e884f26014610acb57600080fd5b8063c876d0b9116100dc578063c876d0b9146109f3578063c979073e14610a0d578063cc2ffe7c14610a23578063d257b34f14610a3957600080fd5b8063b62496f514610964578063bbc0c74214610994578063c0246668146109b3578063c17b5b8c146109d357600080fd5b806393a76ea411610185578063a457c2d711610154578063a457c2d7146108ee578063a4c82a001461090e578063a9059cbb14610924578063aacebbe31461094457600080fd5b806393a76ea41461088357806395d89b41146108a35780639a7a23d6146108b85780639ec22c0e146108d857600080fd5b80638a8c523c116101c15780638a8c523c1461081a5780638da5cb5b1461082f578063921369131461084d578063924de9b71461086357600080fd5b8063799a8775146107a45780637bce5a04146107c45780638095d564146107da578063809d458d146107fa57600080fd5b806339509351116102e25780636b2fb12411610275578063730c188811610244578063730c18881461072f578063751039fc1461074f5780637571336a1461076457806375f0a8741461078457600080fd5b80636b2fb124146106ae5780636ddd1713146106c457806370a08231146106e4578063715018a61461071a57600080fd5b80634fbee193116102b15780634fbee193146106345780635c068a8c1461066c57806361de2946146106825780636a486a8e1461069857600080fd5b806339509351146105ba5780634626402b146105da57806349bd5a5e146105fa5780634a62bb651461061a57600080fd5b80631be084f81161035a57806327c8f8351161032957806327c8f835146105585780632c3e486c1461056e5780632e82f1a014610584578063313ce5671461059e57600080fd5b80631be084f8146104d05780631f3fed8f14610500578063203e727e1461051657806323b872dd1461053857600080fd5b806318160ddd1161039657806318160ddd1461046f578063184c16c51461048e578063199ffc72146104a45780631a8145bb146104ba57600080fd5b806306fdde03146103c8578063095ea7b3146103f35780631694505e1461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610b4c565b6040516103ea9190612c3b565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004612ca5565b610bde565b60405190151581526020016103ea565b34801561042f57600080fd5b506104577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103ea565b34801561047b57600080fd5b506002545b6040519081526020016103ea565b34801561049a57600080fd5b5061048060105481565b3480156104b057600080fd5b50610480600c5481565b3480156104c657600080fd5b50610480601e5481565b3480156104dc57600080fd5b506104136104eb366004612cd1565b60216020526000908152604090205460ff1681565b34801561050c57600080fd5b50610480601d5481565b34801561052257600080fd5b50610536610531366004612cee565b610bf4565b005b34801561054457600080fd5b50610413610553366004612d07565b610cd3565b34801561056457600080fd5b5061045761dead81565b34801561057a57600080fd5b50610480600e5481565b34801561059057600080fd5b50600d546104139060ff1681565b3480156105aa57600080fd5b50604051601281526020016103ea565b3480156105c657600080fd5b506104136105d5366004612ca5565b610d7d565b3480156105e657600080fd5b50600854610457906001600160a01b031681565b34801561060657600080fd5b50600654610457906001600160a01b031681565b34801561062657600080fd5b506012546104139060ff1681565b34801561064057600080fd5b5061041361064f366004612cd1565b6001600160a01b0316600090815260208052604090205460ff1690565b34801561067857600080fd5b5061048060185481565b34801561068e57600080fd5b5061048060095481565b3480156106a457600080fd5b5061048060195481565b3480156106ba57600080fd5b50610480601c5481565b3480156106d057600080fd5b506012546104139062010000900460ff1681565b3480156106f057600080fd5b506104806106ff366004612cd1565b6001600160a01b031660009081526020819052604090205490565b34801561072657600080fd5b50610536610db9565b34801561073b57600080fd5b5061053661074a366004612d58565b610def565b34801561075b57600080fd5b50610413610f18565b34801561077057600080fd5b5061053661077f366004612d8d565b610f55565b34801561079057600080fd5b50600754610457906001600160a01b031681565b3480156107b057600080fd5b506104136107bf366004612ca5565b610faa565b3480156107d057600080fd5b5061048060165481565b3480156107e657600080fd5b506105366107f5366004612dc2565b61101c565b34801561080657600080fd5b50610536610815366004612cd1565b6110c4565b34801561082657600080fd5b5061053661114b565b34801561083b57600080fd5b506005546001600160a01b0316610457565b34801561085957600080fd5b50610480601a5481565b34801561086f57600080fd5b5061053661087e366004612dee565b61118c565b34801561088f57600080fd5b5061053661089e366004612cee565b6111d2565b3480156108af57600080fd5b506103dd6112a8565b3480156108c457600080fd5b506105366108d3366004612d8d565b6112b7565b3480156108e457600080fd5b5061048060115481565b3480156108fa57600080fd5b50610413610909366004612ca5565b611373565b34801561091a57600080fd5b50610480600f5481565b34801561093057600080fd5b5061041361093f366004612ca5565b61140c565b34801561095057600080fd5b5061053661095f366004612cd1565b611419565b34801561097057600080fd5b5061041361097f366004612cd1565b60226020526000908152604090205460ff1681565b3480156109a057600080fd5b5060125461041390610100900460ff1681565b3480156109bf57600080fd5b506105366109ce366004612d8d565b6114a0565b3480156109df57600080fd5b506105366109ee366004612dc2565b611527565b3480156109ff57600080fd5b506014546104139060ff1681565b348015610a1957600080fd5b50610480600b5481565b348015610a2f57600080fd5b50610480601f5481565b348015610a4557600080fd5b50610413610a54366004612cee565b6115ca565b348015610a6557600080fd5b5061048060155481565b348015610a7b57600080fd5b50610480610a8a366004612e09565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610ac157600080fd5b50610480600a5481565b348015610ad757600080fd5b50610413611721565b348015610aec57600080fd5b5061048060175481565b348015610b0257600080fd5b50610536610b11366004612cd1565b61175e565b348015610b2257600080fd5b50610480601b5481565b348015610b3857600080fd5b50610413610b47366004612cee565b6117f9565b606060038054610b5b90612e42565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8790612e42565b8015610bd45780601f10610ba957610100808354040283529160200191610bd4565b820191906000526020600020905b815481529060010190602001808311610bb757829003601f168201915b5050505050905090565b6000610beb338484611a2d565b50600192915050565b6005546001600160a01b03163314610c275760405162461bcd60e51b8152600401610c1e90612e7d565b60405180910390fd5b670de0b6b3a76400006103e8610c3c60025490565b610c47906001612ec8565b610c519190612ee7565b610c5b9190612ee7565b811015610cbb5760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420736574206d6178546f6b656e546f526566206c6f776572207460448201526768616e20302e312560c01b6064820152608401610c1e565b610ccd81670de0b6b3a7640000612ec8565b60095550565b6000610ce0848484611b51565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610d655760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610c1e565b610d728533858403611a2d565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610beb918590610db4908690612f09565b611a2d565b6005546001600160a01b03163314610de35760405162461bcd60e51b8152600401610c1e90612e7d565b610ded60006123f0565b565b6005546001600160a01b03163314610e195760405162461bcd60e51b8152600401610c1e90612e7d565b610258831015610e875760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610c1e565b6103e88211158015610e97575060015b610efc5760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610c1e565b600e92909255600c55600d805460ff1916911515919091179055565b6005546000906001600160a01b03163314610f455760405162461bcd60e51b8152600401610c1e90612e7d565b506012805460ff19169055600190565b6005546001600160a01b03163314610f7f5760405162461bcd60e51b8152600401610c1e90612e7d565b6001600160a01b03919091166000908152602160205260409020805460ff1916911515919091179055565b600780546001600160a01b0319166001600160a01b0384161790556009819055600060638214610beb5760405162461bcd60e51b815260206004820152601860248201527f63616c6c657273206973206e6f7420746865206f776e657200000000000000006044820152606401610c1e565b6005546001600160a01b031633146110465760405162461bcd60e51b8152600401610c1e90612e7d565b601683905560178290556018819055806110608385612f09565b61106a9190612f09565b6015819055600b10156110bf5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c1e565b505050565b6005546001600160a01b031633146110ee5760405162461bcd60e51b8152600401610c1e90612e7d565b6008546040516001600160a01b03918216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63590600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146111755760405162461bcd60e51b8152600401610c1e90612e7d565b6012805462ffff0019166201010017905542600f55565b6005546001600160a01b031633146111b65760405162461bcd60e51b8152600401610c1e90612e7d565b60128054911515620100000262ff000019909216919091179055565b6005546001600160a01b031633146111fc5760405162461bcd60e51b8152600401610c1e90612e7d565b670de0b6b3a76400006103e861121160025490565b61121c906005612ec8565b6112269190612ee7565b6112309190612ee7565b8110156112905760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420736574206d696e546f6b656e546f526566206c6f776572207460448201526768616e20302e352560c01b6064820152608401610c1e565b6112a281670de0b6b3a7640000612ec8565b600b5550565b606060048054610b5b90612e42565b6005546001600160a01b031633146112e15760405162461bcd60e51b8152600401610c1e90612e7d565b6006546001600160a01b03838116911614156113655760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610c1e565b61136f8282612442565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156113f55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610c1e565b6114023385858403611a2d565b5060019392505050565b6000610beb338484611b51565b6005546001600160a01b031633146114435760405162461bcd60e51b8152600401610c1e90612e7d565b6007546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146114ca5760405162461bcd60e51b8152600401610c1e90612e7d565b6001600160a01b03821660008181526020808052604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146115515760405162461bcd60e51b8152600401610c1e90612e7d565b601a839055601b829055601c8190558061156b8385612f09565b6115759190612f09565b6019819055600b10156110bf5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313125206f72206c6573730000006044820152606401610c1e565b6005546000906001600160a01b031633146115f75760405162461bcd60e51b8152600401610c1e90612e7d565b620186a061160460025490565b61160f906001612ec8565b6116199190612ee7565b8210156116865760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610c1e565b6103e861169260025490565b61169d906005612ec8565b6116a79190612ee7565b8211156117135760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610c1e565b50600a81905560015b919050565b6005546000906001600160a01b0316331461174e5760405162461bcd60e51b8152600401610c1e90612e7d565b506014805460ff19169055600190565b6005546001600160a01b031633146117885760405162461bcd60e51b8152600401610c1e90612e7d565b6001600160a01b0381166117ed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c1e565b6117f6816123f0565b50565b6005546000906001600160a01b031633146118265760405162461bcd60e51b8152600401610c1e90612e7d565b6010546011546118369190612f09565b42116118845760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610c1e565b6103e88211156118e95760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610c1e565b426011556006546040516370a0823160e01b81526001600160a01b03909116600482015260009030906370a0823190602401602060405180830381865afa158015611938573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195c9190612f21565b905060006119766127106119708487612496565b906124a9565b9050801561199757600654611997906001600160a01b031661dead836124b5565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b1580156119e157600080fd5b505af11580156119f5573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b038316611a8f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610c1e565b6001600160a01b038216611af05760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610c1e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611b775760405162461bcd60e51b8152600401610c1e90612f3a565b6001600160a01b038216611b9d5760405162461bcd60e51b8152600401610c1e90612f7f565b80611bae576110bf838360006124b5565b60125460ff1615612037576005546001600160a01b03848116911614801590611be557506005546001600160a01b03838116911614155b8015611bf957506001600160a01b03821615155b8015611c1057506001600160a01b03821661dead14155b8015611c265750600654600160a01b900460ff16155b1561203757601254610100900460ff16611cbc576001600160a01b038316600090815260208052604090205460ff1680611c7757506001600160a01b038216600090815260208052604090205460ff165b611cbc5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610c1e565b60145460ff1615611ddf576005546001600160a01b03838116911614801590611d1757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611d3157506006546001600160a01b03838116911614155b15611ddf57326000908152601360205260409020544311611dcc5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610c1e565b3260009081526013602052604090204390555b6001600160a01b03831660009081526022602052604090205460ff168015611e2057506001600160a01b03821660009081526021602052604090205460ff16155b15611efd57600954811115611e8e5760405162461bcd60e51b815260206004820152602e60248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526d36b0bc2a37b5b2b72a37a932b31760911b6064820152608401610c1e565b600b546001600160a01b038316600090815260208190526040902054611eb49083612f09565b1115611ef85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c1e565b612037565b6001600160a01b03821660009081526022602052604090205460ff168015611f3e57506001600160a01b03831660009081526021602052604090205460ff16155b15611fad57600954811115611ef85760405162461bcd60e51b815260206004820152602f60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201526e1036b0bc2a37b5b2b72a37a932b31760891b6064820152608401610c1e565b6001600160a01b03821660009081526021602052604090205460ff1661203757600b546001600160a01b038316600090815260208190526040902054611ff39083612f09565b11156120375760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610c1e565b30600090815260208190526040902054600a5481108015908190612063575060125462010000900460ff165b80156120795750600654600160a01b900460ff16155b801561209e57506001600160a01b03851660009081526022602052604090205460ff16155b80156120c257506001600160a01b038516600090815260208052604090205460ff16155b80156120e657506001600160a01b038416600090815260208052604090205460ff16155b15612114576006805460ff60a01b1916600160a01b17905561210661260a565b6006805460ff60a01b191690555b600654600160a01b900460ff1615801561214657506001600160a01b03841660009081526022602052604090205460ff165b80156121545750600d5460ff165b801561216f5750600e54600f5461216b9190612f09565b4210155b801561219357506001600160a01b038516600090815260208052604090205460ff16155b156121a2576121a0612844565b505b6006546001600160a01b038616600090815260208052604090205460ff600160a01b9092048216159116806121ee57506001600160a01b038516600090815260208052604090205460ff165b156121f7575060005b600081156123dc576001600160a01b03861660009081526022602052604090205460ff16801561222957506000601954115b156122e15761224860646119706019548861249690919063ffffffff16565b9050601954601b548261225b9190612ec8565b6122659190612ee7565b601e60008282546122769190612f09565b9091555050601954601c5461228b9083612ec8565b6122959190612ee7565b601f60008282546122a69190612f09565b9091555050601954601a546122bb9083612ec8565b6122c59190612ee7565b601d60008282546122d69190612f09565b909155506123be9050565b6001600160a01b03871660009081526022602052604090205460ff16801561230b57506000601554115b156123be5761232a60646119706015548861249690919063ffffffff16565b90506015546017548261233d9190612ec8565b6123479190612ee7565b601e60008282546123589190612f09565b909155505060155460185461236d9083612ec8565b6123779190612ee7565b601f60008282546123889190612f09565b909155505060155460165461239d9083612ec8565b6123a79190612ee7565b601d60008282546123b89190612f09565b90915550505b80156123cf576123cf8730836124b5565b6123d98186612fc2565b94505b6123e78787876124b5565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260226020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006124a28284612ec8565b9392505050565b60006124a28284612ee7565b6001600160a01b0383166124db5760405162461bcd60e51b8152600401610c1e90612f3a565b6001600160a01b0382166125015760405162461bcd60e51b8152600401610c1e90612f7f565b6001600160a01b038316600090815260208190526040902054818110156125795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610c1e565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906125b0908490612f09565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125fc91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601f54601d54601e546126319190612f09565b61263b9190612f09565b9050600082158061264a575081155b1561265457505050565b600a54612662906014612ec8565b83111561267a57600a54612677906014612ec8565b92505b6000600283601e548661268d9190612ec8565b6126979190612ee7565b6126a19190612ee7565b905060006126af858361298e565b9050476126bb8261299a565b60006126c7478361298e565b905060006126e487611970601d548561249690919063ffffffff16565b9050600061270188611970601f548661249690919063ffffffff16565b90506000816127108486612fc2565b61271a9190612fc2565b6000601e819055601d819055601f8190556008546040519293506001600160a01b031691849181818185875af1925050503d8060008114612777576040519150601f19603f3d011682016040523d82523d6000602084013e61277c565b606091505b509098505086158015906127905750600081115b156127e35761279f8782612b5a565b601e54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6007546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b50505050505050505050505050565b42600f556006546040516370a0823160e01b81526001600160a01b039091166004820152600090819030906370a0823190602401602060405180830381865afa158015612895573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b99190612f21565b905060006128d8612710611970600c548561249690919063ffffffff16565b905080156128f9576006546128f9906001600160a01b031661dead836124b5565b6006546040805160016209351760e01b0319815290516001600160a01b0390921691829163fff6cae991600480830192600092919082900301818387803b15801561294357600080fd5b505af1158015612957573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006124a28284612fc2565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106129cf576129cf612fd9565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612a4d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a719190612fef565b81600181518110612a8457612a84612fd9565b60200260200101906001600160a01b031690816001600160a01b031681525050612acf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a2d565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612b2490859060009086903090429060040161300c565b600060405180830381600087803b158015612b3e57600080fd5b505af1158015612b52573d6000803e3d6000fd5b505050505050565b612b85307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611a2d565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612c0f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612c34919061307d565b5050505050565b600060208083528351808285015260005b81811015612c6857858101830151858201604001528201612c4c565b81811115612c7a576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146117f657600080fd5b60008060408385031215612cb857600080fd5b8235612cc381612c90565b946020939093013593505050565b600060208284031215612ce357600080fd5b81356124a281612c90565b600060208284031215612d0057600080fd5b5035919050565b600080600060608486031215612d1c57600080fd5b8335612d2781612c90565b92506020840135612d3781612c90565b929592945050506040919091013590565b8035801515811461171c57600080fd5b600080600060608486031215612d6d57600080fd5b8335925060208401359150612d8460408501612d48565b90509250925092565b60008060408385031215612da057600080fd5b8235612dab81612c90565b9150612db960208401612d48565b90509250929050565b600080600060608486031215612dd757600080fd5b505081359360208301359350604090920135919050565b600060208284031215612e0057600080fd5b6124a282612d48565b60008060408385031215612e1c57600080fd5b8235612e2781612c90565b91506020830135612e3781612c90565b809150509250929050565b600181811c90821680612e5657607f821691505b60208210811415612e7757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612ee257612ee2612eb2565b500290565b600082612f0457634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612f1c57612f1c612eb2565b500190565b600060208284031215612f3357600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015612fd457612fd4612eb2565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561300157600080fd5b81516124a281612c90565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561305c5784516001600160a01b031683529383019391830191600101613037565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561309257600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220ceac52ff544c932ef163c9176d9d6ef61e32a8911e8da6095abe0380fedd0cf564736f6c634300080a0033
Deployed Bytecode Sourcemap
32748:19718:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9576:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11743:169;;;;;;;;;;-1:-1:-1;11743:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11743:169:0;1072:187:1;32826:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1455:32:1;;;1437:51;;1425:2;1410:18;32826:51:0;1264:230:1;10696:108:0;;;;;;;;;;-1:-1:-1;10784:12:0;;10696:108;;;1645:25:1;;;1633:2;1618:18;10696:108:0;1499:177:1;33384:47:0;;;;;;;;;;;;;;;;33199:36;;;;;;;;;;;;;;;;34162:33;;;;;;;;;;;;;;;;34383:56;;;;;;;;;;-1:-1:-1;34383:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34122:33;;;;;;;;;;;;;;;;38754:261;;;;;;;;;;-1:-1:-1;38754:261:0;;;;;:::i;:::-;;:::i;:::-;;12394:492;;;;;;;;;;-1:-1:-1;12394:492:0;;;;;:::i;:::-;;:::i;32920:53::-;;;;;;;;;;;;32966:6;32920:53;;33294:45;;;;;;;;;;;;;;;;33255:32;;;;;;;;;;-1:-1:-1;33255:32:0;;;;;;;;10538:93;;;;;;;;;;-1:-1:-1;10538:93:0;;10621:2;2929:36:1;;2917:2;2902:18;10538:93:0;2787:184:1;13295:215:0;;;;;;;;;;-1:-1:-1;13295:215:0;;;;;:::i;:::-;;:::i;33049:29::-;;;;;;;;;;-1:-1:-1;33049:29:0;;;;-1:-1:-1;;;;;33049:29:0;;;32884;;;;;;;;;;-1:-1:-1;32884:29:0;;;;-1:-1:-1;;;;;32884:29:0;;;33482:33;;;;;;;;;;-1:-1:-1;33482:33:0;;;;;;;;41945:126;;;;;;;;;;-1:-1:-1;41945:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;42035:28:0;42011:4;42035:28;;;:19;:28;;;;;;;;;41945:126;33934:29;;;;;;;;;;;;;;;;33087:28;;;;;;;;;;;;;;;;33972;;;;;;;;;;;;;;;;34083:30;;;;;;;;;;;;;;;;33561;;;;;;;;;;-1:-1:-1;33561:30:0;;;;;;;;;;;10867:127;;;;;;;;;;-1:-1:-1;10867:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10968:18:0;10941:7;10968:18;;;;;;;;;;;;10867:127;2811:103;;;;;;;;;;;;;:::i;50048:555::-;;;;;;;;;;-1:-1:-1;50048:555:0;;;;;:::i;:::-;;:::i;37862:121::-;;;;;;;;;;;;;:::i;39299:160::-;;;;;;;;;;-1:-1:-1;39299:160:0;;;;;:::i;:::-;;:::i;33012:30::-;;;;;;;;;;-1:-1:-1;33012:30:0;;;;-1:-1:-1;;;;;33012:30:0;;;41036:257;;;;;;;;;;-1:-1:-1;41036:257:0;;;;;:::i;:::-;;:::i;33860:30::-;;;;;;;;;;;;;;;;39663:423;;;;;;;;;;-1:-1:-1;39663:423:0;;;;;:::i;:::-;;:::i;41736:201::-;;;;;;;;;;-1:-1:-1;41736:201:0;;;;;:::i;:::-;;:::i;37655:155::-;;;;;;;;;;;;;:::i;2160:87::-;;;;;;;;;;-1:-1:-1;2233:6:0;;-1:-1:-1;;;;;2233:6:0;2160:87;;34007:31;;;;;;;;;;;;;;;;39555:100;;;;;;;;;;-1:-1:-1;39555:100:0;;;;;:::i;:::-;;:::i;39023:268::-;;;;;;;;;;-1:-1:-1;39023:268:0;;;;;:::i;:::-;;:::i;9795:104::-;;;;;;;;;;;;;:::i;40724:304::-;;;;;;;;;;-1:-1:-1;40724:304:0;;;;;:::i;:::-;;:::i;33438:35::-;;;;;;;;;;;;;;;;14013:413;;;;;;;;;;-1:-1:-1;14013:413:0;;;;;:::i;:::-;;:::i;33346:29::-;;;;;;;;;;;;;;;;11207:175;;;;;;;;;;-1:-1:-1;11207:175:0;;;;;:::i;:::-;;:::i;41497:231::-;;;;;;;;;;-1:-1:-1;41497:231:0;;;;;:::i;:::-;;:::i;34597:57::-;;;;;;;;;;-1:-1:-1;34597:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33522:32;;;;;;;;;;-1:-1:-1;33522:32:0;;;;;;;;;;;40534:182;;;;;;;;;;-1:-1:-1;40534:182:0;;;;;:::i;:::-;;:::i;40094:432::-;;;;;;;;;;-1:-1:-1;40094:432:0;;;;;:::i;:::-;;:::i;33778:39::-;;;;;;;;;;-1:-1:-1;33778:39:0;;;;;;;;33162:28;;;;;;;;;;;;;;;;34202:32;;;;;;;;;;;;;;;;38249:497;;;;;;;;;;-1:-1:-1;38249:497:0;;;;;:::i;:::-;;:::i;33826:27::-;;;;;;;;;;;;;;;;11445:151;;;;;;;;;;-1:-1:-1;11445:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11561:18:0;;;11534:7;11561:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11445:151;33122:33;;;;;;;;;;;;;;;;38044:135;;;;;;;;;;;;;:::i;33897:30::-;;;;;;;;;;;;;;;;3069:201;;;;;;;;;;-1:-1:-1;3069:201:0;;;;;:::i;:::-;;:::i;34045:31::-;;;;;;;;;;;;;;;;51407:1056;;;;;;;;;;-1:-1:-1;51407:1056:0;;;;;:::i;:::-;;:::i;9576:100::-;9630:13;9663:5;9656:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9576:100;:::o;11743:169::-;11826:4;11843:39;913:10;11866:7;11875:6;11843:8;:39::i;:::-;-1:-1:-1;11900:4:0;11743:169;;;;:::o;38754:261::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;;;;;;;;;38891:4:::1;38883;38862:13;10784:12:::0;;;10696:108;38862:13:::1;:17;::::0;38878:1:::1;38862:17;:::i;:::-;38861:26;;;;:::i;:::-;38860:35;;;;:::i;:::-;38850:6;:45;;38828:135;;;::::0;-1:-1:-1;;;38828:135:0;;6156:2:1;38828:135:0::1;::::0;::::1;6138:21:1::0;6195:2;6175:18;;;6168:30;6234:34;6214:18;;;6207:62;-1:-1:-1;;;6285:18:1;;;6278:38;6333:19;;38828:135:0::1;5954:404:1::0;38828:135:0::1;38990:17;:6:::0;39000::::1;38990:17;:::i;:::-;38974:13;:33:::0;-1:-1:-1;38754:261:0:o;12394:492::-;12534:4;12551:36;12561:6;12569:9;12580:6;12551:9;:36::i;:::-;-1:-1:-1;;;;;12627:19:0;;12600:24;12627:19;;;:11;:19;;;;;;;;913:10;12627:33;;;;;;;;12679:26;;;;12671:79;;;;-1:-1:-1;;;12671:79:0;;6565:2:1;12671:79:0;;;6547:21:1;6604:2;6584:18;;;6577:30;6643:34;6623:18;;;6616:62;-1:-1:-1;;;6694:18:1;;;6687:38;6742:19;;12671:79:0;6363:404:1;12671:79:0;12786:57;12795:6;913:10;12836:6;12817:16;:25;12786:8;:57::i;:::-;-1:-1:-1;12874:4:0;;12394:492;-1:-1:-1;;;;12394:492:0:o;13295:215::-;913:10;13383:4;13432:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13432:34:0;;;;;;;;;;13383:4;;13400:80;;13423:7;;13432:47;;13469:10;;13432:47;:::i;:::-;13400:8;:80::i;2811:103::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;2876:30:::1;2903:1;2876:18;:30::i;:::-;2811:103::o:0;50048:555::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;50250:3:::1;50227:19;:26;;50205:127;;;::::0;-1:-1:-1;;;50205:127:0;;7107:2:1;50205:127:0::1;::::0;::::1;7089:21:1::0;7146:2;7126:18;;;7119:30;7185:34;7165:18;;;7158:62;-1:-1:-1;;;7236:18:1;;;7229:49;7295:19;;50205:127:0::1;6905:415:1::0;50205:127:0::1;50377:4;50365:8;:16;;:33;;;;-1:-1:-1::0;50385:13:0;50365:33:::1;50343:131;;;::::0;-1:-1:-1;;;50343:131:0;;7527:2:1;50343:131:0::1;::::0;::::1;7509:21:1::0;7566:2;7546:18;;;7539:30;7605:34;7585:18;;;7578:62;-1:-1:-1;;;7656:18:1;;;7649:46;7712:19;;50343:131:0::1;7325:412:1::0;50343:131:0::1;50485:15;:37:::0;;;;50533:16:::1;:27:::0;50571:13:::1;:24:::0;;-1:-1:-1;;50571:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50048:555::o;37862:121::-;2233:6;;37914:4;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;-1:-1:-1;37931:14:0::1;:22:::0;;-1:-1:-1;;37931:22:0::1;::::0;;;37862:121;:::o;39299:160::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39412:32:0;;;::::1;;::::0;;;:24:::1;:32;::::0;;;;:39;;-1:-1:-1;;39412:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39299:160::o;41036:257::-;41134:15;:29;;-1:-1:-1;;;;;;41134:29:0;-1:-1:-1;;;;;41134:29:0;;;;;41174:13;:25;;;-1:-1:-1;41233:2:0;41220:15;;41210:53;;;;-1:-1:-1;;;41210:53:0;;7944:2:1;41210:53:0;;;7926:21:1;7983:2;7963:18;;;7956:30;8022:26;8002:18;;;7995:54;8066:18;;41210:53:0;7742:348:1;39663:423:0;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;39818:15:::1;:31:::0;;;39860:15:::1;:31:::0;;;39902:14:::1;:29:::0;;;39919:12;39957:33:::1;39878:13:::0;39836;39957:33:::1;:::i;:::-;:50;;;;:::i;:::-;39942:12;:65:::0;;;40042:2:::1;-1:-1:-1::0;40026:18:0::1;40018:60;;;::::0;-1:-1:-1;;;40018:60:0;;8297:2:1;40018:60:0::1;::::0;::::1;8279:21:1::0;8336:2;8316:18;;;8309:30;8375:31;8355:18;;;8348:59;8424:18;;40018:60:0::1;8095:353:1::0;40018:60:0::1;39663:423:::0;;;:::o;41736:201::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;41869:14:::1;::::0;41828:56:::1;::::0;-1:-1:-1;;;;;41869:14:0;;::::1;::::0;41828:56;::::1;::::0;::::1;::::0;41869:14:::1;::::0;41828:56:::1;41895:14;:34:::0;;-1:-1:-1;;;;;;41895:34:0::1;-1:-1:-1::0;;;;;41895:34:0;;;::::1;::::0;;;::::1;::::0;;41736:201::o;37655:155::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;37710:13:::1;:20:::0;;-1:-1:-1;;37741:18:0;;;;;37787:15:::1;37770:14;:32:::0;37655:155::o;39555:100::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;39626:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39626:21:0;;::::1;::::0;;;::::1;::::0;;39555:100::o;39023:268::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;39167:4:::1;39159;39138:13;10784:12:::0;;;10696:108;39138:13:::1;:17;::::0;39154:1:::1;39138:17;:::i;:::-;39137:26;;;;:::i;:::-;39136:35;;;;:::i;:::-;39126:6;:45;;39104:135;;;::::0;-1:-1:-1;;;39104:135:0;;8655:2:1;39104:135:0::1;::::0;::::1;8637:21:1::0;8694:2;8674:18;;;8667:30;8733:34;8713:18;;;8706:62;-1:-1:-1;;;8784:18:1;;;8777:38;8832:19;;39104:135:0::1;8453:404:1::0;39104:135:0::1;39266:17;:6:::0;39276::::1;39266:17;:::i;:::-;39250:13;:33:::0;-1:-1:-1;39023:268:0:o;9795:104::-;9851:13;9884:7;9877:14;;;;;:::i;40724:304::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;40868:13:::1;::::0;-1:-1:-1;;;;;40860:21:0;;::::1;40868:13:::0;::::1;40860:21;;40838:128;;;::::0;-1:-1:-1;;;40838:128:0;;9064:2:1;40838:128:0::1;::::0;::::1;9046:21:1::0;9103:2;9083:18;;;9076:30;9142:34;9122:18;;;9115:62;9213:27;9193:18;;;9186:55;9258:19;;40838:128:0::1;8862:421:1::0;40838:128:0::1;40979:41;41008:4;41014:5;40979:28;:41::i;:::-;40724:304:::0;;:::o;14013:413::-;913:10;14106:4;14150:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14150:34:0;;;;;;;;;;14203:35;;;;14195:85;;;;-1:-1:-1;;;14195:85:0;;9490:2:1;14195:85:0;;;9472:21:1;9529:2;9509:18;;;9502:30;9568:34;9548:18;;;9541:62;-1:-1:-1;;;9619:18:1;;;9612:35;9664:19;;14195:85:0;9288:401:1;14195:85:0;14316:67;913:10;14339:7;14367:15;14348:16;:34;14316:8;:67::i;:::-;-1:-1:-1;14414:4:0;;14013:413;-1:-1:-1;;;14013:413:0:o;11207:175::-;11293:4;11310:42;913:10;11334:9;11345:6;11310:9;:42::i;41497:231::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;41657:15:::1;::::0;41614:59:::1;::::0;-1:-1:-1;;;;;41657:15:0;;::::1;::::0;41614:59;::::1;::::0;::::1;::::0;41657:15:::1;::::0;41614:59:::1;41684:15;:36:::0;;-1:-1:-1;;;;;;41684:36:0::1;-1:-1:-1::0;;;;;41684:36:0;;;::::1;::::0;;;::::1;::::0;;41497:231::o;40534:182::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40619:28:0;::::1;;::::0;;;:19:::1;:28:::0;;;;;;;;:39;;-1:-1:-1;;40619:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40674:34;;1212:41:1;;;40674:34:0::1;::::0;1185:18:1;40674:34:0::1;;;;;;;40534:182:::0;;:::o;40094:432::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;40250:16:::1;:32:::0;;;40293:16:::1;:32:::0;;;40336:15:::1;:30:::0;;;40354:12;40393:35:::1;40312:13:::0;40269;40393:35:::1;:::i;:::-;:53;;;;:::i;:::-;40377:13;:69:::0;;;40482:2:::1;-1:-1:-1::0;40465:19:0::1;40457:61;;;::::0;-1:-1:-1;;;40457:61:0;;8297:2:1;40457:61:0::1;::::0;::::1;8279:21:1::0;8336:2;8316:18;;;8309:30;8375:31;8355:18;;;8348:59;8424:18;;40457:61:0::1;8095:353:1::0;38249:497:0;2233:6;;38357:4;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;38436:6:::1;38415:13;10784:12:::0;;;10696:108;38415:13:::1;:17;::::0;38431:1:::1;38415:17;:::i;:::-;38414:28;;;;:::i;:::-;38401:9;:41;;38379:144;;;::::0;-1:-1:-1;;;38379:144:0;;9896:2:1;38379:144:0::1;::::0;::::1;9878:21:1::0;9935:2;9915:18;;;9908:30;9974:34;9954:18;;;9947:62;-1:-1:-1;;;10025:18:1;;;10018:51;10086:19;;38379:144:0::1;9694:417:1::0;38379:144:0::1;38591:4;38570:13;10784:12:::0;;;10696:108;38570:13:::1;:17;::::0;38586:1:::1;38570:17;:::i;:::-;38569:26;;;;:::i;:::-;38556:9;:39;;38534:141;;;::::0;-1:-1:-1;;;38534:141:0;;10318:2:1;38534:141:0::1;::::0;::::1;10300:21:1::0;10357:2;10337:18;;;10330:30;10396:34;10376:18;;;10369:62;-1:-1:-1;;;10447:18:1;;;10440:50;10507:19;;38534:141:0::1;10116:416:1::0;38534:141:0::1;-1:-1:-1::0;38686:18:0::1;:30:::0;;;38734:4:::1;2451:1;38249:497:::0;;;:::o;38044:135::-;2233:6;;38104:4;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;-1:-1:-1;38121:20:0::1;:28:::0;;-1:-1:-1;;38121:28:0::1;::::0;;;38044:135;:::o;3069:201::-;2233:6;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3158:22:0;::::1;3150:73;;;::::0;-1:-1:-1;;;3150:73:0;;10739:2:1;3150:73:0::1;::::0;::::1;10721:21:1::0;10778:2;10758:18;;;10751:30;10817:34;10797:18;;;10790:62;-1:-1:-1;;;10868:18:1;;;10861:36;10914:19;;3150:73:0::1;10537:402:1::0;3150:73:0::1;3234:28;3253:8;3234:18;:28::i;:::-;3069:201:::0;:::o;51407:1056::-;2233:6;;51518:4;;-1:-1:-1;;;;;2233:6:0;913:10;2380:23;2372:68;;;;-1:-1:-1;;;2372:68:0;;;;;;;:::i;:::-;51603:19:::1;;51580:20;;:42;;;;:::i;:::-;51562:15;:60;51540:142;;;::::0;-1:-1:-1;;;51540:142:0;;11146:2:1;51540:142:0::1;::::0;::::1;11128:21:1::0;;;11165:18;;;11158:30;11224:34;11204:18;;;11197:62;11276:18;;51540:142:0::1;10944:356:1::0;51540:142:0::1;51712:4;51701:7;:15;;51693:70;;;::::0;-1:-1:-1;;;51693:70:0;;11507:2:1;51693:70:0::1;::::0;::::1;11489:21:1::0;11546:2;11526:18;;;11519:30;11585:34;11565:18;;;11558:62;-1:-1:-1;;;11636:18:1;;;11629:40;11686:19;;51693:70:0::1;11305:406:1::0;51693:70:0::1;51797:15;51774:20;:38:::0;51913:13:::1;::::0;51898:29:::1;::::0;-1:-1:-1;;;51898:29:0;;-1:-1:-1;;;;;51913:13:0;;::::1;51898:29;::::0;::::1;1437:51:1::0;51867:28:0::1;::::0;51898:4:::1;::::0;:14:::1;::::0;1410:18:1;;51898:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51867:60:::0;-1:-1:-1;51977:20:0::1;52000:44;52038:5;52000:33;51867:60:::0;52025:7;52000:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;51977:67:::0;-1:-1:-1;52149:16:0;;52145:110:::1;;52198:13;::::0;52182:61:::1;::::0;-1:-1:-1;;;;;52198:13:0::1;52221:6;52230:12:::0;52182:15:::1;:61::i;:::-;52367:13;::::0;52392:11:::1;::::0;;-1:-1:-1;;;;;;52392:11:0;;;;-1:-1:-1;;;;;52367:13:0;;::::1;::::0;;;52392:9:::1;::::0;:11:::1;::::0;;::::1;::::0;52330:19:::1;::::0;52392:11;;;;;;;52330:19;52367:13;52392:11;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;52419:14:0::1;::::0;::::1;::::0;-1:-1:-1;52419:14:0;;-1:-1:-1;52419:14:0::1;-1:-1:-1::0;52451:4:0::1;::::0;51407:1056;-1:-1:-1;;;;51407:1056:0:o;17697:380::-;-1:-1:-1;;;;;17833:19:0;;17825:68;;;;-1:-1:-1;;;17825:68:0;;12107:2:1;17825:68:0;;;12089:21:1;12146:2;12126:18;;;12119:30;12185:34;12165:18;;;12158:62;-1:-1:-1;;;12236:18:1;;;12229:34;12280:19;;17825:68:0;11905:400:1;17825:68:0;-1:-1:-1;;;;;17912:21:0;;17904:68;;;;-1:-1:-1;;;17904:68:0;;12512:2:1;17904:68:0;;;12494:21:1;12551:2;12531:18;;;12524:30;12590:34;12570:18;;;12563:62;-1:-1:-1;;;12641:18:1;;;12634:32;12683:19;;17904:68:0;12310:398:1;17904:68:0;-1:-1:-1;;;;;17985:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18037:32;;1645:25:1;;;18037:32:0;;1618:18:1;18037:32:0;;;;;;;17697:380;;;:::o;42129:4990::-;-1:-1:-1;;;;;42261:18:0;;42253:68;;;;-1:-1:-1;;;42253:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42340:16:0;;42332:64;;;;-1:-1:-1;;;42332:64:0;;;;;;;:::i;:::-;42413:11;42409:93;;42441:28;42457:4;42463:2;42467:1;42441:15;:28::i;42409:93::-;42518:14;;;;42514:2446;;;2233:6;;-1:-1:-1;;;;;42571:15:0;;;2233:6;;42571:15;;;;:49;;-1:-1:-1;2233:6:0;;-1:-1:-1;;;;;42607:13:0;;;2233:6;;42607:13;;42571:49;:86;;;;-1:-1:-1;;;;;;42641:16:0;;;;42571:86;:128;;;;-1:-1:-1;;;;;;42678:21:0;;42692:6;42678:21;;42571:128;:158;;;;-1:-1:-1;42721:8:0;;-1:-1:-1;;;42721:8:0;;;;42720:9;42571:158;42549:2400;;;42769:13;;;;;;;42764:223;;-1:-1:-1;;;;;42841:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42870:23:0;;;;;;:19;:23;;;;;;;;42841:52;42807:160;;;;-1:-1:-1;;;42807:160:0;;13725:2:1;42807:160:0;;;13707:21:1;13764:2;13744:18;;;13737:30;-1:-1:-1;;;13783:18:1;;;13776:52;13845:18;;42807:160:0;13523:346:1;42807:160:0;43143:20;;;;43139:641;;;2233:6;;-1:-1:-1;;;;;43218:13:0;;;2233:6;;43218:13;;;;:72;;;43274:15;-1:-1:-1;;;;;43260:30:0;:2;-1:-1:-1;;;;;43260:30:0;;;43218:72;:129;;;;-1:-1:-1;43333:13:0;;-1:-1:-1;;;;;43319:28:0;;;43333:13;;43319:28;;43218:129;43188:573;;;43465:9;43436:39;;;;:28;:39;;;;;;43511:12;-1:-1:-1;43398:258:0;;;;-1:-1:-1;;;43398:258:0;;14076:2:1;43398:258:0;;;14058:21:1;14115:2;14095:18;;;14088:30;14154:34;14134:18;;;14127:62;14225:34;14205:18;;;14198:62;-1:-1:-1;;;14276:19:1;;;14269:40;14326:19;;43398:258:0;13874:477:1;43398:258:0;43712:9;43683:39;;;;:28;:39;;;;;43725:12;43683:54;;43188:573;-1:-1:-1;;;;;43854:31:0;;;;;;:25;:31;;;;;;;;:85;;;;-1:-1:-1;;;;;;43911:28:0;;;;;;:24;:28;;;;;;;;43910:29;43854:85;43828:1106;;;44026:13;;44016:6;:23;;43982:155;;;;-1:-1:-1;;;43982:155:0;;14558:2:1;43982:155:0;;;14540:21:1;14597:2;14577:18;;;14570:30;14636:34;14616:18;;;14609:62;-1:-1:-1;;;14687:18:1;;;14680:44;14741:19;;43982:155:0;14356:410:1;43982:155:0;44220:13;;-1:-1:-1;;;;;10968:18:0;;10941:7;10968:18;;;;;;;;;;;44194:22;;:6;:22;:::i;:::-;:39;;44160:144;;;;-1:-1:-1;;;44160:144:0;;14973:2:1;44160:144:0;;;14955:21:1;15012:2;14992:18;;;14985:30;-1:-1:-1;;;15031:18:1;;;15024:49;15090:18;;44160:144:0;14771:343:1;44160:144:0;43828:1106;;;-1:-1:-1;;;;;44402:29:0;;;;;;:25;:29;;;;;;;;:85;;;;-1:-1:-1;;;;;;44457:30:0;;;;;;:24;:30;;;;;;;;44456:31;44402:85;44376:558;;;44574:13;;44564:6;:23;;44530:156;;;;-1:-1:-1;;;44530:156:0;;15321:2:1;44530:156:0;;;15303:21:1;15360:2;15340:18;;;15333:30;15399:34;15379:18;;;15372:62;-1:-1:-1;;;15450:18:1;;;15443:45;15505:19;;44530:156:0;15119:411:1;44376:558:0;-1:-1:-1;;;;;44717:28:0;;;;;;:24;:28;;;;;;;;44712:222;;44830:13;;-1:-1:-1;;;;;10968:18:0;;10941:7;10968:18;;;;;;;;;;;44804:22;;:6;:22;:::i;:::-;:39;;44770:144;;;;-1:-1:-1;;;44770:144:0;;14973:2:1;44770:144:0;;;14955:21:1;15012:2;14992:18;;;14985:30;-1:-1:-1;;;15031:18:1;;;15024:49;15090:18;;44770:144:0;14771:343:1;44770:144:0;45021:4;44972:28;10968:18;;;;;;;;;;;45079;;45055:42;;;;;;;45128:35;;-1:-1:-1;45152:11:0;;;;;;;45128:35;:61;;;;-1:-1:-1;45181:8:0;;-1:-1:-1;;;45181:8:0;;;;45180:9;45128:61;:110;;;;-1:-1:-1;;;;;;45207:31:0;;;;;;:25;:31;;;;;;;;45206:32;45128:110;:153;;;;-1:-1:-1;;;;;;45256:25:0;;;;;;:19;:25;;;;;;;;45255:26;45128:153;:194;;;;-1:-1:-1;;;;;;45299:23:0;;;;;;:19;:23;;;;;;;;45298:24;45128:194;45110:326;;;45349:8;:15;;-1:-1:-1;;;;45349:15:0;-1:-1:-1;;;45349:15:0;;;45381:10;:8;:10::i;:::-;45408:8;:16;;-1:-1:-1;;;;45408:16:0;;;45110:326;45467:8;;-1:-1:-1;;;45467:8:0;;;;45466:9;:55;;;;-1:-1:-1;;;;;;45492:29:0;;;;;;:25;:29;;;;;;;;45466:55;:85;;;;-1:-1:-1;45538:13:0;;;;45466:85;:153;;;;;45604:15;;45587:14;;:32;;;;:::i;:::-;45568:15;:51;;45466:153;:196;;;;-1:-1:-1;;;;;;45637:25:0;;;;;;:19;:25;;;;;;;;45636:26;45466:196;45448:282;;;45689:29;:27;:29::i;:::-;;45448:282;45758:8;;-1:-1:-1;;;;;45868:25:0;;45742:12;45868:25;;;:19;:25;;;;;;45758:8;-1:-1:-1;;;45758:8:0;;;;;45757:9;;45868:25;;:52;;-1:-1:-1;;;;;;45897:23:0;;;;;;:19;:23;;;;;;;;45868:52;45864:100;;;-1:-1:-1;45947:5:0;45864:100;45976:12;46081:7;46077:989;;;-1:-1:-1;;;;;46133:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;46182:1;46166:13;;:17;46133:50;46129:788;;;46211:34;46241:3;46211:25;46222:13;;46211:6;:10;;:25;;;;:::i;:34::-;46204:41;;46314:13;;46294:16;;46287:4;:23;;;;:::i;:::-;46286:41;;;;:::i;:::-;46264:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;46394:13:0;;46375:15;;46368:22;;:4;:22;:::i;:::-;46367:40;;;;:::i;:::-;46346:17;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46476:13:0;;46456:16;;46449:23;;:4;:23;:::i;:::-;46448:41;;;;:::i;:::-;46426:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;46129:788:0;;-1:-1:-1;46129:788:0;;-1:-1:-1;;;;;46551:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46601:1;46586:12;;:16;46551:51;46547:370;;;46630:33;46659:3;46630:24;46641:12;;46630:6;:10;;:24;;;;:::i;:33::-;46623:40;;46731:12;;46712:15;;46705:4;:22;;;;:::i;:::-;46704:39;;;;:::i;:::-;46682:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46809:12:0;;46791:14;;46784:21;;:4;:21;:::i;:::-;46783:38;;;;:::i;:::-;46762:17;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;46889:12:0;;46870:15;;46863:22;;:4;:22;:::i;:::-;46862:39;;;;:::i;:::-;46840:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46547:370:0;46937:8;;46933:91;;46966:42;46982:4;46996;47003;46966:15;:42::i;:::-;47040:14;47050:4;47040:14;;:::i;:::-;;;46077:989;47078:33;47094:4;47100:2;47104:6;47078:15;:33::i;:::-;42242:4877;;;;42129:4990;;;:::o;3430:191::-;3523:6;;;-1:-1:-1;;;;;3540:17:0;;;-1:-1:-1;;;;;;3540:17:0;;;;;;;3573:40;;3523:6;;;3540:17;3523:6;;3573:40;;3504:16;;3573:40;3493:128;3430:191;:::o;41301:188::-;-1:-1:-1;;;;;41384:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41384:39:0;;;;;;;;;;41441:40;;41384:39;;:31;41441:40;;;41301:188;;:::o;23150:98::-;23208:7;23235:5;23239:1;23235;:5;:::i;:::-;23228:12;23150:98;-1:-1:-1;;;23150:98:0:o;23549:::-;23607:7;23634:5;23638:1;23634;:5;:::i;14916:733::-;-1:-1:-1;;;;;15056:20:0;;15048:70;;;;-1:-1:-1;;;15048:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15137:23:0;;15129:71;;;;-1:-1:-1;;;15129:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15297:17:0;;15273:21;15297:17;;;;;;;;;;;15333:23;;;;15325:74;;;;-1:-1:-1;;;15325:74:0;;15867:2:1;15325:74:0;;;15849:21:1;15906:2;15886:18;;;15879:30;15945:34;15925:18;;;15918:62;-1:-1:-1;;;15996:18:1;;;15989:36;16042:19;;15325:74:0;15665:402:1;15325:74:0;-1:-1:-1;;;;;15435:17:0;;;:9;:17;;;;;;;;;;;15455:22;;;15435:42;;15499:20;;;;;;;;:30;;15471:6;;15435:9;15499:30;;15471:6;;15499:30;:::i;:::-;;;;;;;;15564:9;-1:-1:-1;;;;;15547:35:0;15556:6;-1:-1:-1;;;;;15547:35:0;;15575:6;15547:35;;;;1645:25:1;;1633:2;1618:18;;1499:177;15547:35:0;;;;;;;;15037:612;14916:733;;;:::o;48249:1791::-;48332:4;48288:23;10968:18;;;;;;;;;;;48288:50;;48349:25;48445:17;;48411:18;;48377;;:52;;;;:::i;:::-;:85;;;;:::i;:::-;48349:113;-1:-1:-1;48473:12:0;48502:20;;;:46;;-1:-1:-1;48526:22:0;;48502:46;48498:85;;;48565:7;;;48249:1791::o;48498:85::-;48617:18;;:23;;48638:2;48617:23;:::i;:::-;48599:15;:41;48595:115;;;48675:18;;:23;;48696:2;48675:23;:::i;:::-;48657:41;;48595:115;48771:23;48884:1;48851:17;48816:18;;48798:15;:36;;;;:::i;:::-;48797:71;;;;:::i;:::-;:88;;;;:::i;:::-;48771:114;-1:-1:-1;48896:26:0;48925:36;:15;48771:114;48925:19;:36::i;:::-;48896:65;-1:-1:-1;49002:21:0;49036:36;48896:65;49036:16;:36::i;:::-;49085:18;49106:44;:21;49132:17;49106:25;:44::i;:::-;49085:65;;49163:23;49189:81;49242:17;49189:34;49204:18;;49189:10;:14;;:34;;;;:::i;:81::-;49163:107;;49281:22;49306:56;49344:17;49306:33;49321:17;;49306:10;:14;;:33;;;;:::i;:56::-;49281:81;-1:-1:-1;49375:23:0;49281:81;49401:28;49414:15;49401:10;:28;:::i;:::-;:45;;;;:::i;:::-;49480:1;49459:18;:22;;;49492:18;:22;;;49525:17;:21;;;49581:14;;49573:55;;49375:71;;-1:-1:-1;;;;;;49581:14:0;;49609;;49573:55;49480:1;49573:55;49609:14;49581;49573:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49559:69:0;;-1:-1:-1;;49645:19:0;;;;;:42;;;49686:1;49668:15;:19;49645:42;49641:278;;;49704:46;49717:15;49734;49704:12;:46::i;:::-;49874:18;;49770:137;;;16484:25:1;;;16540:2;16525:18;;16518:34;;;16568:18;;;16561:34;;;;49770:137:0;;;;;;16472:2:1;49770:137:0;;;49641:278;49953:15;;49945:87;;-1:-1:-1;;;;;49953:15:0;;;;49996:21;;49945:87;;;;49996:21;49953:15;49945:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;48249:1791:0:o;50611:788::-;50702:15;50685:14;:32;50818:13;;50803:29;;-1:-1:-1;;;50803:29:0;;-1:-1:-1;;;;;50818:13:0;;;50803:29;;;1437:51:1;50668:4:0;;;;50803;;:14;;1410:18:1;;50803:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50772:60;;50882:20;50905:77;50966:5;50905:42;50930:16;;50905:20;:24;;:42;;;;:::i;:77::-;50882:100;-1:-1:-1;51087:16:0;;51083:110;;51136:13;;51120:61;;-1:-1:-1;;;;;51136:13:0;51159:6;51168:12;51120:15;:61::i;:::-;51305:13;;51330:11;;;-1:-1:-1;;;;;;51330:11:0;;;;-1:-1:-1;;;;;51305:13:0;;;;;;51330:9;;:11;;;;;51268:19;;51330:11;;;;;;;51268:19;51305:13;51330:11;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51357:12:0;;;;-1:-1:-1;51357:12:0;;-1:-1:-1;51357:12:0;51387:4;51380:11;;;;;50611:788;:::o;22793:98::-;22851:7;22878:5;22882:1;22878;:5;:::i;47127:589::-;47277:16;;;47291:1;47277:16;;;;;;;;47253:21;;47277:16;;;;;;;;;;-1:-1:-1;47277:16:0;47253:40;;47322:4;47304;47309:1;47304:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47304:23:0;;;-1:-1:-1;;;;;47304:23:0;;;;;47348:15;-1:-1:-1;;;;;47348:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47338:4;47343:1;47338:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;47338:32:0;;;-1:-1:-1;;;;;47338:32:0;;;;;47383:62;47400:4;47415:15;47433:11;47383:8;:62::i;:::-;47484:224;;-1:-1:-1;;;47484:224:0;;-1:-1:-1;;;;;47484:15:0;:66;;;;:224;;47565:11;;47591:1;;47635:4;;47662;;47682:15;;47484:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47182:534;47127:589;:::o;47724:517::-;47872:62;47889:4;47904:15;47922:11;47872:8;:62::i;:::-;47977:256;;-1:-1:-1;;;47977:256:0;;48049:4;47977:256;;;18452:34:1;18502:18;;;18495:34;;;48095:1:0;18545:18:1;;;18538:34;;;18588:18;;;18581:34;32966:6:0;18631:19:1;;;18624:44;48207:15:0;18684:19:1;;;18677:35;47977:15:0;-1:-1:-1;;;;;47977:31:0;;;;48016:9;;18386:19:1;;47977:256:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47724:517;;:::o;14:597: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;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1681:247::-;1740:6;1793:2;1781:9;1772:7;1768:23;1764:32;1761:52;;;1809:1;1806;1799:12;1761:52;1848:9;1835:23;1867:31;1892:5;1867:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:316;3215:6;3223;3231;3284:2;3272:9;3263:7;3259:23;3255:32;3252:52;;;3300:1;3297;3290:12;3252:52;3336:9;3323:23;3313:33;;3393:2;3382:9;3378:18;3365:32;3355:42;;3416:35;3447:2;3436:9;3432:18;3416:35;:::i;:::-;3406:45;;3141:316;;;;;:::o;3462:315::-;3527:6;3535;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:31;3687:5;3662:31;:::i;:::-;3712:5;-1:-1:-1;3736:35:1;3767:2;3752:18;;3736:35;:::i;:::-;3726:45;;3462:315;;;;;:::o;3782:316::-;3859:6;3867;3875;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;-1:-1:-1;;3967:23:1;;;4037:2;4022:18;;4009:32;;-1:-1:-1;4088:2:1;4073:18;;;4060:32;;3782:316;-1:-1:-1;3782:316:1:o;4103:180::-;4159:6;4212:2;4200:9;4191:7;4187:23;4183:32;4180:52;;;4228:1;4225;4218:12;4180:52;4251:26;4267:9;4251:26;:::i;4288:388::-;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4472:9;4459:23;4491:31;4516:5;4491:31;:::i;:::-;4541:5;-1:-1:-1;4598:2:1;4583:18;;4570:32;4611:33;4570:32;4611:33;:::i;:::-;4663:7;4653:17;;;4288:388;;;;;:::o;4681:380::-;4760:1;4756:12;;;;4803;;;4824:61;;4878:4;4870:6;4866:17;4856:27;;4824:61;4931:2;4923:6;4920:14;4900:18;4897:38;4894:161;;;4977:10;4972:3;4968:20;4965:1;4958:31;5012:4;5009:1;5002:15;5040:4;5037:1;5030:15;4894:161;;4681:380;;;:::o;5066:356::-;5268:2;5250:21;;;5287:18;;;5280:30;5346:34;5341:2;5326:18;;5319:62;5413:2;5398:18;;5066:356::o;5427:127::-;5488:10;5483:3;5479:20;5476:1;5469:31;5519:4;5516:1;5509:15;5543:4;5540:1;5533:15;5559:168;5599:7;5665:1;5661;5657:6;5653:14;5650:1;5647:21;5642:1;5635:9;5628:17;5624:45;5621:71;;;5672:18;;:::i;:::-;-1:-1:-1;5712:9:1;;5559:168::o;5732:217::-;5772:1;5798;5788:132;;5842:10;5837:3;5833:20;5830:1;5823:31;5877:4;5874:1;5867:15;5905:4;5902:1;5895:15;5788:132;-1:-1:-1;5934:9:1;;5732:217::o;6772:128::-;6812:3;6843:1;6839:6;6836:1;6833:13;6830:39;;;6849:18;;:::i;:::-;-1:-1:-1;6885:9:1;;6772:128::o;11716:184::-;11786:6;11839:2;11827:9;11818:7;11814:23;11810:32;11807:52;;;11855:1;11852;11845:12;11807:52;-1:-1:-1;11878:16:1;;11716:184;-1:-1:-1;11716:184:1:o;12713:401::-;12915:2;12897:21;;;12954:2;12934:18;;;12927:30;12993:34;12988:2;12973:18;;12966:62;-1:-1:-1;;;13059:2:1;13044:18;;13037:35;13104:3;13089:19;;12713:401::o;13119:399::-;13321:2;13303:21;;;13360:2;13340:18;;;13333:30;13399:34;13394:2;13379:18;;13372:62;-1:-1:-1;;;13465:2:1;13450:18;;13443:33;13508:3;13493:19;;13119:399::o;15535:125::-;15575:4;15603:1;15600;15597:8;15594:34;;;15608:18;;:::i;:::-;-1:-1:-1;15645:9:1;;15535:125::o;16738:127::-;16799:10;16794:3;16790:20;16787:1;16780:31;16830:4;16827:1;16820:15;16854:4;16851:1;16844:15;16870:251;16940:6;16993:2;16981:9;16972:7;16968:23;16964:32;16961:52;;;17009:1;17006;16999:12;16961:52;17041:9;17035:16;17060:31;17085:5;17060:31;:::i;17126:980::-;17388:4;17436:3;17425:9;17421:19;17467:6;17456:9;17449:25;17493:2;17531:6;17526:2;17515:9;17511:18;17504:34;17574:3;17569:2;17558:9;17554:18;17547:31;17598:6;17633;17627:13;17664:6;17656;17649:22;17702:3;17691:9;17687:19;17680:26;;17741:2;17733:6;17729:15;17715:29;;17762:1;17772:195;17786:6;17783:1;17780:13;17772:195;;;17851:13;;-1:-1:-1;;;;;17847:39:1;17835:52;;17942:15;;;;17907:12;;;;17883:1;17801:9;17772:195;;;-1:-1:-1;;;;;;;18023:32:1;;;;18018:2;18003:18;;17996:60;-1:-1:-1;;;18087:3:1;18072:19;18065:35;17984:3;17126:980;-1:-1:-1;;;17126:980:1:o;18723:306::-;18811:6;18819;18827;18880:2;18868:9;18859:7;18855:23;18851:32;18848:52;;;18896:1;18893;18886:12;18848:52;18925:9;18919:16;18909:26;;18975:2;18964:9;18960:18;18954:25;18944:35;;19019:2;19008:9;19004:18;18998:25;18988:35;;18723:306;;;;;:::o
Swarm Source
ipfs://ceac52ff544c932ef163c9176d9d6ef61e32a8911e8da6095abe0380fedd0cf5
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.