ERC-20
Overview
Max Total Supply
1,000,000,000 ELIZA
Holders
203
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000003400274703 ELIZAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ELIZA
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-11-07 */ /** The first chat-GPT bot made in 1966 by "Joseph Weizenbaum" a German-American computer scientist and professor. https://pastyonder.com/2024/04/12/eliza-the-original-chatbot/ Eliza GIT: github.com/anthay/ELIZA PDF (Proof of First GPT-Bot) 1966 Boston Documents of Eliza. http://www.universelle-automation.de/1966_Boston.pdf Interaction websites: https://anthay.github.io/eliza.html https://web.njit.edu/~ronkowit/eliza.html Interactive Twitter Bot: https://x.com/0xElizaAI https://x.com/anthay_hub Website: https://www.elizaai.tech **/ // SPDX-License-Identifier: MIT pragma solidity 0.8.28; // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 value ) external returns (bool); } // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); } // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) /** * @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; } } // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance( address sender, uint256 balance, uint256 needed ); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance( address spender, uint256 allowance, uint256 needed ); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance( address sender, uint256 balance, uint256 needed, uint256 tokenId ); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom( address from, address to, uint256 value ) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer( address from, address to, uint256 value ) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update( address from, address to, uint256 value ) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve( address owner, address spender, uint256 value ) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve( address owner, address spender, uint256 value, bool emitEvent ) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 value ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance( spender, currentAllowance, value ); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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); } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract ELIZA is Ownable, ERC20 { IUniswapV2Router public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public operationsWallet; address public developmentWallet; bool public isLimitsEnabled; bool public isCooldownEnabled; bool public isTaxEnabled; bool private inSwapBack; bool public isLaunched; uint256 public launchBlock; uint256 public launchTime; uint256 private lastSwapBackExecutionBlock; uint256 public constant MAX_FEE = 30; uint256 public maxBuy; uint256 public maxSell; uint256 public maxWallet; uint256 public swapTokensAtAmount; uint256 public buyFee; uint256 public sellFee; uint256 public transferFee; mapping(address => bool) public isBot; mapping(address => bool) public isExcludedFromFees; mapping(address => bool) public isExcludedFromLimits; mapping(address => bool) public automatedMarketMakerPairs; mapping(address => uint256) private _holderLastTransferTimestamp; event Launch(); event SetOperationsWallet(address newWallet, address oldWallet); event SetDevelopmentWallet(address newWallet, address oldWallet); event SetLimitsEnabled(bool status); event SetCooldownEnabled(bool status); event SetTaxesEnabled(bool status); event SetMaxBuy(uint256 amount); event SetMaxSell(uint256 amount); event SetMaxWallet(uint256 amount); event SetSwapTokensAtAmount(uint256 newValue, uint256 oldValue); event SetBuyFees(uint256 newValue, uint256 oldValue); event SetSellFees(uint256 newValue, uint256 oldValue); event SetTransferFees(uint256 newValue, uint256 oldValue); event ExcludeFromFees(address account, bool isExcluded); event ExcludeFromLimits(address account, bool isExcluded); event SetBots(address account, bool isExcluded); event SetAutomatedMarketMakerPair(address pair, bool value); event WithdrawStuckTokens(address token, uint256 amount); error AlreadyLaunched(); error InvalidSender(); error AddressZero(); error AmountTooLow(); error AmountTooHigh(); error FeeTooHigh(); error AMMAlreadySet(); error NoNativeTokens(); error NoTokens(); error FailedToWithdrawNativeTokens(); error BotDetected(); error TransferDelay(); error MaxBuyAmountExceed(); error MaxSellAmountExceed(); error MaxWalletAmountExceed(); error NotLaunched(); modifier lockSwapBack() { inSwapBack = true; _; inSwapBack = false; } constructor() Ownable(msg.sender) ERC20("0xEliza", "ELIZA") { address sender = msg.sender; _mint(sender, 1_000_000_000 ether); uint256 totalSupply = totalSupply(); operationsWallet = 0x05c3E7C8605F96BD3420A58A76cE5540AbaA5d1A; developmentWallet = 0x18B2e22f6F39D49D9A2c75227291234DD5912CF1; address uniswapFeeCollector = 0x000000fee13a103A10D593b9AE06b3e05F2E7E1c; maxBuy = (totalSupply * 14) / 1000; maxSell = (totalSupply * 14) / 1000; maxWallet = (totalSupply * 14) / 1000; swapTokensAtAmount = (totalSupply * 5) / 10000; isLimitsEnabled = true; isCooldownEnabled = true; isTaxEnabled = true; buyFee = 30; sellFee = 30; transferFee = 60; uniswapV2Router = IUniswapV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _setAutomatedMarketMakerPair(uniswapV2Pair, true); _approve(address(this), address(uniswapV2Router), type(uint256).max); _excludeFromFees(address(this), true); _excludeFromFees(address(0xdEaD), true); _excludeFromFees(sender, true); _excludeFromFees(operationsWallet, true); _excludeFromFees(developmentWallet, true); _excludeFromFees(uniswapFeeCollector, true); _excludeFromLimits(address(this), true); _excludeFromLimits(address(0xdEaD), true); _excludeFromLimits(sender, true); _excludeFromLimits(operationsWallet, true); _excludeFromLimits(developmentWallet, true); _excludeFromLimits(uniswapFeeCollector, true); } receive() external payable {} fallback() external payable {} function launch() external onlyOwner { require(!isLaunched, AlreadyLaunched()); isLaunched = true; launchBlock = block.number; launchTime = block.timestamp; emit Launch(); } function setOperationsWallet(address _operationsWallet) external { require(msg.sender == operationsWallet, InvalidSender()); require(_operationsWallet != address(0), AddressZero()); address oldWallet = operationsWallet; operationsWallet = _operationsWallet; emit SetOperationsWallet(operationsWallet, oldWallet); } function setDevelopmentWallet(address _developmentWallet) external { require(msg.sender == developmentWallet, InvalidSender()); require(_developmentWallet != address(0), AddressZero()); address oldWallet = developmentWallet; developmentWallet = _developmentWallet; emit SetDevelopmentWallet(developmentWallet, oldWallet); } function setLimitsEnabled(bool value) external onlyOwner { isLimitsEnabled = value; emit SetLimitsEnabled(value); } function setCooldownEnabled(bool value) external onlyOwner { isCooldownEnabled = value; emit SetCooldownEnabled(value); } function setTaxesEnabled(bool value) external onlyOwner { isTaxEnabled = value; emit SetTaxesEnabled(value); } function setMaxBuy(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 2) / 1000), AmountTooLow()); maxBuy = amount; emit SetMaxBuy(maxBuy); } function setMaxSell(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 2) / 1000), AmountTooLow()); maxSell = amount; emit SetMaxSell(maxSell); } function setMaxWallet(uint256 amount) external onlyOwner { require(amount >= ((totalSupply() * 3) / 1000), AmountTooLow()); maxWallet = amount; emit SetMaxWallet(maxWallet); } function setSwapTokensAtAmount(uint256 amount) external onlyOwner { uint256 _totalSupply = totalSupply(); require(amount >= (_totalSupply * 1) / 1000000, AmountTooLow()); require(amount <= (_totalSupply * 5) / 1000, AmountTooHigh()); uint256 oldValue = swapTokensAtAmount; swapTokensAtAmount = amount; emit SetSwapTokensAtAmount(amount, oldValue); } function setBuyFees(uint256 _buyFee) external onlyOwner { require(_buyFee <= MAX_FEE, FeeTooHigh()); uint256 oldValue = buyFee; buyFee = _buyFee; emit SetBuyFees(_buyFee, oldValue); } function setSellFees(uint256 _sellFee) external onlyOwner { require(_sellFee <= MAX_FEE, FeeTooHigh()); uint256 oldValue = sellFee; sellFee = _sellFee; emit SetSellFees(_sellFee, oldValue); } function setTransferFees(uint256 _transferFee) external onlyOwner { require(_transferFee <= MAX_FEE, FeeTooHigh()); uint256 oldValue = transferFee; transferFee = _transferFee; emit SetTransferFees(_transferFee, oldValue); } function excludeFromFees(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _excludeFromFees(accounts[i], value); } } function excludeFromLimits(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _excludeFromLimits(accounts[i], value); } } function setBots(address[] calldata accounts, bool value) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { if ( (!automatedMarketMakerPairs[accounts[i]]) && (accounts[i] != address(uniswapV2Router)) && (accounts[i] != address(this)) && (accounts[i] != address(0)) && (!isExcludedFromFees[accounts[i]] && !isExcludedFromLimits[accounts[i]]) ) _setBots(accounts[i], value); } } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require(!automatedMarketMakerPairs[pair], AMMAlreadySet()); _setAutomatedMarketMakerPair(pair, value); } function withdrawStuckTokens(address _token) external onlyOwner { address sender = msg.sender; uint256 amount; if (_token == address(0)) { bool success; amount = address(this).balance; require(amount > 0, NoNativeTokens()); (success, ) = address(sender).call{value: amount}(""); require(success, FailedToWithdrawNativeTokens()); } else { amount = IERC20(_token).balanceOf(address(this)); require(amount > 0, NoTokens()); IERC20(_token).transfer(msg.sender, amount); } emit WithdrawStuckTokens(_token, amount); } function _transferOwnership(address newOwner) internal virtual override { address oldOwner = owner(); if (oldOwner != address(0)) { _excludeFromFees(oldOwner, false); _excludeFromLimits(oldOwner, false); } _excludeFromFees(newOwner, true); _excludeFromLimits(newOwner, true); super._transferOwnership(newOwner); } function _update( address from, address to, uint256 amount ) internal virtual override { address sender = msg.sender; address origin = tx.origin; uint256 blockNumber = block.number; require(!isBot[from], BotDetected()); require(sender == from || !isBot[sender], BotDetected()); require( origin == from || origin == sender || !isBot[origin], BotDetected() ); require( isLaunched || isExcludedFromLimits[from] || isExcludedFromLimits[to], NotLaunched() ); bool limits = isLimitsEnabled && !inSwapBack && !(isExcludedFromLimits[from] || isExcludedFromLimits[to]); if (limits) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdEaD) ) { if (isCooldownEnabled) { if (to != address(uniswapV2Router) && to != uniswapV2Pair) { require( _holderLastTransferTimestamp[origin] < blockNumber - 3 && _holderLastTransferTimestamp[to] < blockNumber - 3, TransferDelay() ); _holderLastTransferTimestamp[origin] = blockNumber; _holderLastTransferTimestamp[to] = blockNumber; } } if ( automatedMarketMakerPairs[from] && !isExcludedFromLimits[to] ) { require(amount <= maxBuy, MaxBuyAmountExceed()); require( amount + balanceOf(to) <= maxWallet, MaxWalletAmountExceed() ); } else if ( automatedMarketMakerPairs[to] && !isExcludedFromLimits[from] ) { require(amount <= maxSell, MaxSellAmountExceed()); } else if (!isExcludedFromLimits[to]) { require( amount + balanceOf(to) <= maxWallet, MaxWalletAmountExceed() ); } } } bool takeFee = isTaxEnabled && !inSwapBack && !(isExcludedFromFees[from] || isExcludedFromFees[to]); if (takeFee) { uint256 fees = 0; if (automatedMarketMakerPairs[to] && sellFee > 0) { fees = (amount * sellFee) / 100; } else if (automatedMarketMakerPairs[from] && buyFee > 0) { fees = (amount * buyFee) / 100; } else if ( !automatedMarketMakerPairs[to] && !automatedMarketMakerPairs[from] && transferFee > 0 ) { fees = (amount * transferFee) / 100; } if (fees > 0) { amount -= fees; super._update(from, address(this), fees); } } uint256 balance = balanceOf(address(this)); bool shouldSwap = balance >= swapTokensAtAmount; if (takeFee && !automatedMarketMakerPairs[from] && shouldSwap) { if (blockNumber > lastSwapBackExecutionBlock) { _swapBack(balance); lastSwapBackExecutionBlock = blockNumber; } } super._update(from, to, amount); } function _swapBack(uint256 balance) internal virtual lockSwapBack { bool success; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uint256 maxSwapAmount = swapTokensAtAmount * 20; if (balance > maxSwapAmount) { balance = maxSwapAmount; } uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( balance, 0, path, address(this), block.timestamp ); uint256 ethBalance = address(this).balance; uint256 ethForDevelopment = ethBalance / 4; uint256 ethForOperations = ethBalance - ethForDevelopment; (success, ) = address(operationsWallet).call{value: ethForOperations}( "" ); (success, ) = address(developmentWallet).call{value: ethForDevelopment}( "" ); } function _excludeFromFees(address account, bool value) internal virtual { isExcludedFromFees[account] = value; emit ExcludeFromFees(account, value); } function _excludeFromLimits(address account, bool value) internal virtual { isExcludedFromLimits[account] = value; emit ExcludeFromLimits(account, value); } function _setBots(address account, bool value) internal virtual { isBot[account] = value; emit SetBots(account, value); } function _setAutomatedMarketMakerPair(address pair, bool value) internal virtual { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AMMAlreadySet","type":"error"},{"inputs":[],"name":"AddressZero","type":"error"},{"inputs":[],"name":"AlreadyLaunched","type":"error"},{"inputs":[],"name":"AmountTooHigh","type":"error"},{"inputs":[],"name":"AmountTooLow","type":"error"},{"inputs":[],"name":"BotDetected","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedToWithdrawNativeTokens","type":"error"},{"inputs":[],"name":"FeeTooHigh","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"MaxBuyAmountExceed","type":"error"},{"inputs":[],"name":"MaxSellAmountExceed","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceed","type":"error"},{"inputs":[],"name":"NoNativeTokens","type":"error"},{"inputs":[],"name":"NoTokens","type":"error"},{"inputs":[],"name":"NotLaunched","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"TransferDelay","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"Launch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"SetBots","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetBuyFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetCooldownEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetDevelopmentWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetLimitsEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWallet","type":"address"},{"indexed":false,"internalType":"address","name":"oldWallet","type":"address"}],"name":"SetOperationsWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSellFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetSwapTokensAtAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SetTaxesEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"SetTransferFees","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":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawStuckTokens","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLaunched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isLimitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_developmentWallet","type":"address"}],"name":"setDevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setLimitsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsWallet","type":"address"}],"name":"setOperationsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setTaxesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setTransferFees","outputs":[],"stateMutability":"nonpayable","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405234801561000f575f5ffd5b5060408051808201825260078152663078456c697a6160c81b60208083019190915282518084019093526005835264454c495a4160d81b9083015290338061007157604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61007a816103eb565b5060046100878382611169565b5060056100948282611169565b503391506100b09050816b033b2e3c9fd0803ce8000000610433565b5f6100ba60035490565b600680546001600160a01b03199081167305c3e7c8605f96bd3420a58a76ce5540abaa5d1a17909155600780549091167318b2e22f6f39d49d9a2c75227291234dd5912cf1179055905070fee13a103a10d593b9ae06b3e05f2e7e1c6103e861012483600e611237565b61012e9190611254565b600b556103e861013f83600e611237565b6101499190611254565b600c556103e861015a83600e611237565b6101649190611254565b600d55612710610175836005611237565b61017f9190611254565b600e556007805462ffffff60a01b19166201010160a01b179055601e600f819055601055603c601155737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156101fb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061021f9190611273565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561026c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102909190611273565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102da573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102fe9190611273565b6001600160a01b031660a0819052610317906001610467565b61032b306080515f196104ca60201b60201c565b6103363060016104dc565b61034361dead60016104dc565b61034e8360016104dc565b600654610365906001600160a01b031660016104dc565b60075461037c906001600160a01b031660016104dc565b6103878160016104dc565b610392306001610537565b61039f61dead6001610537565b6103aa836001610537565b6006546103c1906001600160a01b03166001610537565b6007546103d8906001600160a01b03166001610537565b6103e3816001610537565b50505061134a565b5f546001600160a01b0316801561041057610406815f6104dc565b610410815f610537565b61041b8260016104dc565b610426826001610537565b61042f82610592565b5050565b6001600160a01b03821661045c5760405163ec442f0560e01b81525f6004820152602401610068565b61042f5f83836105e1565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91015b60405180910390a15050565b6104d78383836001610c81565b505050565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016104be565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291016104be565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383165f9081526012602052604090205433903290439060ff1615610620576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b0316148061065857506001600160a01b0383165f9081526012602052604090205460ff16155b610675576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b031614806106a65750826001600160a01b0316826001600160a01b0316145b806106c957506001600160a01b0382165f9081526012602052604090205460ff16155b6106e6576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff168061071557506001600160a01b0386165f9081526014602052604090205460ff165b8061073757506001600160a01b0385165f9081526014602052604090205460ff165b61075457604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff1680156107795750600754600160b81b900460ff16155b80156107bf57506001600160a01b0387165f9081526014602052604090205460ff16806107bd57506001600160a01b0386165f9081526014602052604090205460ff165b155b90508015610a7d575f546001600160a01b038881169116148015906107f157505f546001600160a01b03878116911614155b801561080557506001600160a01b03861615155b801561081c57506001600160a01b03861661dead14155b15610a7d57600754600160a81b900460ff1615610903576080516001600160a01b0316866001600160a01b03161415801561086b575060a0516001600160a01b0316866001600160a01b031614155b156109035761087b6003836112a0565b6001600160a01b0384165f908152601660205260409020541080156108c057506108a66003836112a0565b6001600160a01b0387165f90815260166020526040902054105b6108dd57604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601660205260408082208590559188168152208290555b6001600160a01b0387165f9081526015602052604090205460ff16801561094257506001600160a01b0386165f9081526014602052604090205460ff16155b156109b357600b5485111561096a57604051632c676b8560e21b815260040160405180910390fd5b600d546001600160a01b0387165f9081526001602052604090205461098f90876112b3565b11156109ae5760405163d867451160e01b815260040160405180910390fd5b610a7d565b6001600160a01b0386165f9081526015602052604090205460ff1680156109f257506001600160a01b0387165f9081526014602052604090205460ff16155b15610a1a57600c548511156109ae576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526014602052604090205460ff16610a7d57600d546001600160a01b0387165f90815260016020526040902054610a5e90876112b3565b1115610a7d5760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015610aa25750600754600160b81b900460ff16155b8015610ae857506001600160a01b0388165f9081526013602052604090205460ff1680610ae657506001600160a01b0387165f9081526013602052604090205460ff165b155b90508015610c09576001600160a01b0387165f9081526015602052604081205460ff168015610b1857505f601054115b15610b3e57606460105488610b2d9190611237565b610b379190611254565b9050610bea565b6001600160a01b0389165f9081526015602052604090205460ff168015610b6657505f600f54115b15610b7b576064600f5488610b2d9190611237565b6001600160a01b0388165f9081526015602052604090205460ff16158015610bbb57506001600160a01b0389165f9081526015602052604090205460ff16155b8015610bc857505f601154115b15610bea57606460115488610bdd9190611237565b610be79190611254565b90505b8015610c0757610bfa81886112a0565b9650610c07893083610d54565b505b305f90815260016020526040902054600e54811015828015610c4357506001600160a01b038a165f9081526015602052604090205460ff16155b8015610c4c5750805b15610c6a57600a54851115610c6a57610c6482610e7a565b600a8590555b610c758a8a8a610d54565b50505050505050505050565b6001600160a01b038416610caa5760405163e602df0560e01b81525f6004820152602401610068565b6001600160a01b038316610cd357604051634a1406b160e11b81525f6004820152602401610068565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610d4e57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610d4591815260200190565b60405180910390a35b50505050565b6001600160a01b038316610d7e578060035f828254610d7391906112b3565b90915550610dee9050565b6001600160a01b0383165f9081526001602052604090205481811015610dd05760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610068565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b038216610e0a57600380548290039055610e28565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610e6d91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f81518110610ec457610ec46112c6565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f469190611273565b81600181518110610f5957610f596112c6565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e546014610f899190611237565b905080841115610f97578093505b6080516001600160a01b031663791ac947855f8530426040518663ffffffff1660e01b8152600401610fcd9594939291906112da565b5f604051808303815f87803b158015610fe4575f5ffd5b505af1158015610ff6573d5f5f3e3d5ffd5b504792505f915061100a9050600483611254565b90505f61101782846112a0565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f8114611062576040519150601f19603f3d011682016040523d82523d5f602084013e611067565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f81146110b4576040519150601f19603f3d011682016040523d82523d5f602084013e6110b9565b606091505b50506007805460ff60b81b191690555050505050505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806110fa57607f821691505b60208210810361111857634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156104d757805f5260205f20601f840160051c810160208510156111435750805b601f840160051c820191505b81811015611162575f815560010161114f565b5050505050565b81516001600160401b03811115611182576111826110d2565b6111968161119084546110e6565b8461111e565b6020601f8211600181146111c8575f83156111b15750848201515b5f19600385901b1c1916600184901b178455611162565b5f84815260208120601f198516915b828110156111f757878501518255602094850194600190920191016111d7565b508482101561121457868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761124e5761124e611223565b92915050565b5f8261126e57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215611283575f5ffd5b81516001600160a01b0381168114611299575f5ffd5b9392505050565b8181038181111561124e5761124e611223565b8082018082111561124e5761124e611223565b634e487b7160e01b5f52603260045260245ffd5b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b8181101561132a5783516001600160a01b0316835260209384019390920191600101611303565b50506001600160a01b039590951660608401525050608001529392505050565b60805160a05161280361138e5f395f81816104b60152611c0901525f818161037c01528181610e7b01528181611bcc01528181612235015261231b01526128035ff3fe6080604052600436106102dd575f3560e01c806395927c251161017d578063d00efb2f116100d2578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b14610900578063f53bc8351461091f578063f8b45b051461093e578063fd72e22a1461095357005b8063e6c1909b146108a2578063ee5ecc89146108c2578063ef998cf0146108e157005b8063d00efb2f146107d6578063d26ed3e3146107eb578063d5759ba31461080a578063dcf7aef31461082a578063dd62ed3e14610849578063e2f456051461088d57005b8063ad29ffde11610139578063b8eb354611610116578063b8eb35461461076f578063bc063e1a14610784578063c04a541414610798578063cb963728146107b757005b8063ad29ffde14610703578063afa4f3b214610722578063b62496f51461074157005b806395927c251461065e57806395d89b411461067d5780639a7a23d6146106915780639c0db5f3146106b0578063a9059cbb146106cf578063acb2ad6f146106ee57005b806349bd5a5e116102335780636ca541e5116101ef578063715018a6116101cc578063715018a6146105fa57806372ac24861461060e578063790ca4131461062d5780638da5cb5b1461064257005b80636ca541e51461059157806370a08231146105b157806370db69d6146105e557005b806349bd5a5e146104a55780634fbee193146104d85780635932ead11461050657806359512ab0146105255780635cce86cd146105445780635d0044ca1461057257005b806323b872dd1161029a578063313ce56711610277578063313ce567146104285780633bbac5791461044357806341aea9de14610471578063470624021461049057005b806323b872dd146103d45780632b14ca56146103f3578063307aebc91461040857005b806301339c21146102df57806306fdde03146102f3578063095ea7b31461031d578063106a5a8f1461034c5780631694505e1461036b57806318160ddd146103b6575b005b3480156102ea575f5ffd5b506102dd610972565b3480156102fe575f5ffd5b506103076109ea565b604051610314919061245d565b60405180910390f35b348015610328575f5ffd5b5061033c6103373660046124a6565b610a7a565b6040519015158152602001610314565b348015610357575f5ffd5b506102dd6103663660046124dd565b610a93565b348015610376575f5ffd5b5061039e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610314565b3480156103c1575f5ffd5b506003545b604051908152602001610314565b3480156103df575f5ffd5b5061033c6103ee36600461255f565b610ae3565b3480156103fe575f5ffd5b506103c660105481565b348015610413575f5ffd5b5060075461033c90600160c01b900460ff1681565b348015610433575f5ffd5b5060405160128152602001610314565b34801561044e575f5ffd5b5061033c61045d36600461259d565b60126020525f908152604090205460ff1681565b34801561047c575f5ffd5b506102dd61048b3660046125bf565b610b06565b34801561049b575f5ffd5b506103c6600f5481565b3480156104b0575f5ffd5b5061039e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104e3575f5ffd5b5061033c6104f236600461259d565b60136020525f908152604090205460ff1681565b348015610511575f5ffd5b506102dd6105203660046125bf565b610b66565b348015610530575f5ffd5b506102dd61053f3660046125bf565b610bbb565b34801561054f575f5ffd5b5061033c61055e36600461259d565b60146020525f908152604090205460ff1681565b34801561057d575f5ffd5b506102dd61058c3660046125da565b610c10565b34801561059c575f5ffd5b5060075461033c90600160a81b900460ff1681565b3480156105bc575f5ffd5b506103c66105cb36600461259d565b6001600160a01b03165f9081526001602052604090205490565b3480156105f0575f5ffd5b506103c6600b5481565b348015610605575f5ffd5b506102dd610c8e565b348015610619575f5ffd5b506102dd61062836600461259d565b610ca1565b348015610638575f5ffd5b506103c660095481565b34801561064d575f5ffd5b505f546001600160a01b031661039e565b348015610669575f5ffd5b506102dd6106783660046125da565b610d53565b348015610688575f5ffd5b50610307610dbb565b34801561069c575f5ffd5b506102dd6106ab3660046125f1565b610dca565b3480156106bb575f5ffd5b506102dd6106ca3660046124dd565b610e19565b3480156106da575f5ffd5b5061033c6106e93660046124a6565b611026565b3480156106f9575f5ffd5b506103c660115481565b34801561070e575f5ffd5b506102dd61071d3660046124dd565b611033565b34801561072d575f5ffd5b506102dd61073c3660046125da565b61107d565b34801561074c575f5ffd5b5061033c61075b36600461259d565b60156020525f908152604090205460ff1681565b34801561077a575f5ffd5b506103c6600c5481565b34801561078f575f5ffd5b506103c6601e81565b3480156107a3575f5ffd5b5060075461039e906001600160a01b031681565b3480156107c2575f5ffd5b506102dd6107d136600461259d565b611149565b3480156107e1575f5ffd5b506103c660085481565b3480156107f6575f5ffd5b506102dd6108053660046125da565b61132e565b348015610815575f5ffd5b5060075461033c90600160a01b900460ff1681565b348015610835575f5ffd5b506102dd6108443660046125da565b611396565b348015610854575f5ffd5b506103c6610863366004612628565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b348015610898575f5ffd5b506103c6600e5481565b3480156108ad575f5ffd5b5060075461033c90600160b01b900460ff1681565b3480156108cd575f5ffd5b506102dd6108dc36600461259d565b6113fe565b3480156108ec575f5ffd5b506102dd6108fb3660046125da565b6114a8565b34801561090b575f5ffd5b506102dd61091a36600461259d565b611526565b34801561092a575f5ffd5b506102dd6109393660046125da565b611568565b348015610949575f5ffd5b506103c6600d5481565b34801561095e575f5ffd5b5060065461039e906001600160a01b031681565b61097a6115e6565b600754600160c01b900460ff16156109a5576040516319f4db0f60e31b815260040160405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b6060600480546109f990612654565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2590612654565b8015610a705780601f10610a4757610100808354040283529160200191610a70565b820191905f5260205f20905b815481529060010190602001808311610a5357829003601f168201915b5050505050905090565b5f33610a87818585611612565b60019150505b92915050565b610a9b6115e6565b5f5b82811015610add57610ad5848483818110610aba57610aba61268c565b9050602002016020810190610acf919061259d565b83611624565b600101610a9d565b50505050565b5f33610af085828561167f565b610afb8585856116f4565b506001949350505050565b610b0e6115e6565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610b5b90831515815260200190565b60405180910390a150565b610b6e6115e6565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610b5b90831515815260200190565b610bc36115e6565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610b5b90831515815260200190565b610c186115e6565b6103e8610c2460035490565b610c2f9060036126b4565b610c3991906126cb565b811015610c5957604051631fbaba3560e01b815260040160405180910390fd5b600d8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610b5b565b610c966115e6565b610c9f5f611751565b565b6007546001600160a01b03163314610ccc57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038116610cf357604051639fabe1c160e01b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610d5b6115e6565b601e811115610d7d5760405163cd4e616760e01b815260040160405180910390fd5b601080549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d47565b6060600580546109f990612654565b610dd26115e6565b6001600160a01b0382165f9081526015602052604090205460ff1615610e0b576040516304eb79b560e31b815260040160405180910390fd5b610e158282611795565b5050565b610e216115e6565b5f5b82811015610add5760155f858584818110610e4057610e4061268c565b9050602002016020810190610e55919061259d565b6001600160a01b0316815260208101919091526040015f205460ff16158015610ed657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316848483818110610eb557610eb561268c565b9050602002016020810190610eca919061259d565b6001600160a01b031614155b8015610f11575030848483818110610ef057610ef061268c565b9050602002016020810190610f05919061259d565b6001600160a01b031614155b8015610f4c57505f848483818110610f2b57610f2b61268c565b9050602002016020810190610f40919061259d565b6001600160a01b031614155b8015610fe9575060135f858584818110610f6857610f6861268c565b9050602002016020810190610f7d919061259d565b6001600160a01b0316815260208101919091526040015f205460ff16158015610fe9575060145f858584818110610fb657610fb661268c565b9050602002016020810190610fcb919061259d565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561101e5761101e8484838181106110035761100361268c565b9050602002016020810190611018919061259d565b836117f0565b600101610e23565b5f33610a878185856116f4565b61103b6115e6565b5f5b82811015610add5761107584848381811061105a5761105a61268c565b905060200201602081019061106f919061259d565b8361184b565b60010161103d565b6110856115e6565b5f61108f60035490565b9050620f42406110a08260016126b4565b6110aa91906126cb565b8210156110ca57604051631fbaba3560e01b815260040160405180910390fd5b6103e86110d88260056126b4565b6110e291906126cb565b8211156111025760405163fd7850ad60e01b815260040160405180910390fd5b600e80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b6111516115e6565b335f6001600160a01b0383166111f75750475f8161118257604051634870bf9160e01b815260040160405180910390fd5b6040516001600160a01b0384169083905f81818185875af1925050503d805f81146111c8576040519150601f19603f3d011682016040523d82523d5f602084013e6111cd565b606091505b505080915050806111f157604051633398652560e11b815260040160405180910390fd5b506112ef565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015611239573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061125d91906126ea565b90505f811161127f5760405163df95788360e01b815260040160405180910390fd5b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af11580156112c9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112ed9190612701565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b910161113c565b6113366115e6565b601e8111156113585760405163cd4e616760e01b815260040160405180910390fd5b601180549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d47565b61139e6115e6565b601e8111156113c05760405163cd4e616760e01b815260040160405180910390fd5b600f80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d47565b6006546001600160a01b0316331461142957604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b03811661145057604051639fabe1c160e01b815260040160405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d47565b6114b06115e6565b6103e86114bc60035490565b6114c79060026126b4565b6114d191906126cb565b8110156114f157604051631fbaba3560e01b815260040160405180910390fd5b600c8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610b5b565b61152e6115e6565b6001600160a01b03811661155c57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61156581611751565b50565b6115706115e6565b6103e861157c60035490565b6115879060026126b4565b61159191906126cb565b8110156115b157604051631fbaba3560e01b815260040160405180910390fd5b600b8190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610b5b565b5f546001600160a01b03163314610c9f5760405163118cdaa760e01b8152336004820152602401611553565b61161f83838360016118a6565b505050565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d47565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610add57818110156116e657604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401611553565b610add84848484035f6118a6565b6001600160a01b03831661171d57604051634b637e8f60e11b81525f6004820152602401611553565b6001600160a01b0382166117465760405163ec442f0560e01b81525f6004820152602401611553565b61161f838383611978565b5f546001600160a01b031680156117765761176c815f61184b565b611776815f611624565b61178182600161184b565b61178c826001611624565b610e1582612054565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d47565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d47565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d47565b6001600160a01b0384166118cf5760405163e602df0560e01b81525f6004820152602401611553565b6001600160a01b0383166118f857604051634a1406b160e11b81525f6004820152602401611553565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610add57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161196a91815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526012602052604090205433903290439060ff16156119b7576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b031614806119ef57506001600160a01b0383165f9081526012602052604090205460ff16155b611a0c576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b03161480611a3d5750826001600160a01b0316826001600160a01b0316145b80611a6057506001600160a01b0382165f9081526012602052604090205460ff16155b611a7d576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff1680611aac57506001600160a01b0386165f9081526014602052604090205460ff165b80611ace57506001600160a01b0385165f9081526014602052604090205460ff165b611aeb57604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff168015611b105750600754600160b81b900460ff16155b8015611b5657506001600160a01b0387165f9081526014602052604090205460ff1680611b5457506001600160a01b0386165f9081526014602052604090205460ff165b155b90508015611e50575f546001600160a01b03888116911614801590611b8857505f546001600160a01b03878116911614155b8015611b9c57506001600160a01b03861615155b8015611bb357506001600160a01b03861661dead14155b15611e5057600754600160a81b900460ff1615611cd6577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614158015611c3e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b15611cd657611c4e60038361271c565b6001600160a01b0384165f90815260166020526040902054108015611c935750611c7960038361271c565b6001600160a01b0387165f90815260166020526040902054105b611cb057604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601660205260408082208590559188168152208290555b6001600160a01b0387165f9081526015602052604090205460ff168015611d1557506001600160a01b0386165f9081526014602052604090205460ff16155b15611d8657600b54851115611d3d57604051632c676b8560e21b815260040160405180910390fd5b600d546001600160a01b0387165f90815260016020526040902054611d62908761272f565b1115611d815760405163d867451160e01b815260040160405180910390fd5b611e50565b6001600160a01b0386165f9081526015602052604090205460ff168015611dc557506001600160a01b0387165f9081526014602052604090205460ff16155b15611ded57600c54851115611d81576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526014602052604090205460ff16611e5057600d546001600160a01b0387165f90815260016020526040902054611e31908761272f565b1115611e505760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015611e755750600754600160b81b900460ff16155b8015611ebb57506001600160a01b0388165f9081526013602052604090205460ff1680611eb957506001600160a01b0387165f9081526013602052604090205460ff165b155b90508015611fdc576001600160a01b0387165f9081526015602052604081205460ff168015611eeb57505f601054115b15611f1157606460105488611f0091906126b4565b611f0a91906126cb565b9050611fbd565b6001600160a01b0389165f9081526015602052604090205460ff168015611f3957505f600f54115b15611f4e576064600f5488611f0091906126b4565b6001600160a01b0388165f9081526015602052604090205460ff16158015611f8e57506001600160a01b0389165f9081526015602052604090205460ff16155b8015611f9b57505f601154115b15611fbd57606460115488611fb091906126b4565b611fba91906126cb565b90505b8015611fda57611fcd818861271c565b9650611fda8930836120a3565b505b305f90815260016020526040902054600e5481101582801561201657506001600160a01b038a165f9081526015602052604090205460ff16155b801561201f5750805b1561203d57600a5485111561203d57612037826121c9565b600a8590555b6120488a8a8a6120a3565b50505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166120cd578060035f8282546120c2919061272f565b9091555061213d9050565b6001600160a01b0383165f908152600160205260409020548181101561211f5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401611553565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661215957600380548290039055612177565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121bc91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f815181106122135761221361268c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561228f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122b39190612742565b816001815181106122c6576122c661268c565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e5460146122f691906126b4565b905080841115612304578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123589087905f9087903090429060040161275d565b5f604051808303815f87803b15801561236f575f5ffd5b505af1158015612381573d5f5f3e3d5ffd5b504792505f915061239590506004836126cb565b90505f6123a2828461271c565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f81146123ed576040519150601f19603f3d011682016040523d82523d5f602084013e6123f2565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f811461243f576040519150601f19603f3d011682016040523d82523d5f602084013e612444565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611565575f5ffd5b5f5f604083850312156124b7575f5ffd5b82356124c281612492565b946020939093013593505050565b8015158114611565575f5ffd5b5f5f5f604084860312156124ef575f5ffd5b833567ffffffffffffffff811115612505575f5ffd5b8401601f81018613612515575f5ffd5b803567ffffffffffffffff81111561252b575f5ffd5b8660208260051b840101111561253f575f5ffd5b602091820194509250840135612554816124d0565b809150509250925092565b5f5f5f60608486031215612571575f5ffd5b833561257c81612492565b9250602084013561258c81612492565b929592945050506040919091013590565b5f602082840312156125ad575f5ffd5b81356125b881612492565b9392505050565b5f602082840312156125cf575f5ffd5b81356125b8816124d0565b5f602082840312156125ea575f5ffd5b5035919050565b5f5f60408385031215612602575f5ffd5b823561260d81612492565b9150602083013561261d816124d0565b809150509250929050565b5f5f60408385031215612639575f5ffd5b823561264481612492565b9150602083013561261d81612492565b600181811c9082168061266857607f821691505b60208210810361268657634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a8d57610a8d6126a0565b5f826126e557634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156126fa575f5ffd5b5051919050565b5f60208284031215612711575f5ffd5b81516125b8816124d0565b81810381811115610a8d57610a8d6126a0565b80820180821115610a8d57610a8d6126a0565b5f60208284031215612752575f5ffd5b81516125b881612492565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156127ad5783516001600160a01b0316835260209384019390920191600101612786565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212202db9594d25ae4524032050b93b00844445faaeac29431845e64b4e1d7b76f88f64736f6c634300081c0033
Deployed Bytecode
0x6080604052600436106102dd575f3560e01c806395927c251161017d578063d00efb2f116100d2578063e6c1909b1161008e578063f2fde38b1161006b578063f2fde38b14610900578063f53bc8351461091f578063f8b45b051461093e578063fd72e22a1461095357005b8063e6c1909b146108a2578063ee5ecc89146108c2578063ef998cf0146108e157005b8063d00efb2f146107d6578063d26ed3e3146107eb578063d5759ba31461080a578063dcf7aef31461082a578063dd62ed3e14610849578063e2f456051461088d57005b8063ad29ffde11610139578063b8eb354611610116578063b8eb35461461076f578063bc063e1a14610784578063c04a541414610798578063cb963728146107b757005b8063ad29ffde14610703578063afa4f3b214610722578063b62496f51461074157005b806395927c251461065e57806395d89b411461067d5780639a7a23d6146106915780639c0db5f3146106b0578063a9059cbb146106cf578063acb2ad6f146106ee57005b806349bd5a5e116102335780636ca541e5116101ef578063715018a6116101cc578063715018a6146105fa57806372ac24861461060e578063790ca4131461062d5780638da5cb5b1461064257005b80636ca541e51461059157806370a08231146105b157806370db69d6146105e557005b806349bd5a5e146104a55780634fbee193146104d85780635932ead11461050657806359512ab0146105255780635cce86cd146105445780635d0044ca1461057257005b806323b872dd1161029a578063313ce56711610277578063313ce567146104285780633bbac5791461044357806341aea9de14610471578063470624021461049057005b806323b872dd146103d45780632b14ca56146103f3578063307aebc91461040857005b806301339c21146102df57806306fdde03146102f3578063095ea7b31461031d578063106a5a8f1461034c5780631694505e1461036b57806318160ddd146103b6575b005b3480156102ea575f5ffd5b506102dd610972565b3480156102fe575f5ffd5b506103076109ea565b604051610314919061245d565b60405180910390f35b348015610328575f5ffd5b5061033c6103373660046124a6565b610a7a565b6040519015158152602001610314565b348015610357575f5ffd5b506102dd6103663660046124dd565b610a93565b348015610376575f5ffd5b5061039e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610314565b3480156103c1575f5ffd5b506003545b604051908152602001610314565b3480156103df575f5ffd5b5061033c6103ee36600461255f565b610ae3565b3480156103fe575f5ffd5b506103c660105481565b348015610413575f5ffd5b5060075461033c90600160c01b900460ff1681565b348015610433575f5ffd5b5060405160128152602001610314565b34801561044e575f5ffd5b5061033c61045d36600461259d565b60126020525f908152604090205460ff1681565b34801561047c575f5ffd5b506102dd61048b3660046125bf565b610b06565b34801561049b575f5ffd5b506103c6600f5481565b3480156104b0575f5ffd5b5061039e7f000000000000000000000000fb470260059b0607b7ec32992f5ed7c54dfd279181565b3480156104e3575f5ffd5b5061033c6104f236600461259d565b60136020525f908152604090205460ff1681565b348015610511575f5ffd5b506102dd6105203660046125bf565b610b66565b348015610530575f5ffd5b506102dd61053f3660046125bf565b610bbb565b34801561054f575f5ffd5b5061033c61055e36600461259d565b60146020525f908152604090205460ff1681565b34801561057d575f5ffd5b506102dd61058c3660046125da565b610c10565b34801561059c575f5ffd5b5060075461033c90600160a81b900460ff1681565b3480156105bc575f5ffd5b506103c66105cb36600461259d565b6001600160a01b03165f9081526001602052604090205490565b3480156105f0575f5ffd5b506103c6600b5481565b348015610605575f5ffd5b506102dd610c8e565b348015610619575f5ffd5b506102dd61062836600461259d565b610ca1565b348015610638575f5ffd5b506103c660095481565b34801561064d575f5ffd5b505f546001600160a01b031661039e565b348015610669575f5ffd5b506102dd6106783660046125da565b610d53565b348015610688575f5ffd5b50610307610dbb565b34801561069c575f5ffd5b506102dd6106ab3660046125f1565b610dca565b3480156106bb575f5ffd5b506102dd6106ca3660046124dd565b610e19565b3480156106da575f5ffd5b5061033c6106e93660046124a6565b611026565b3480156106f9575f5ffd5b506103c660115481565b34801561070e575f5ffd5b506102dd61071d3660046124dd565b611033565b34801561072d575f5ffd5b506102dd61073c3660046125da565b61107d565b34801561074c575f5ffd5b5061033c61075b36600461259d565b60156020525f908152604090205460ff1681565b34801561077a575f5ffd5b506103c6600c5481565b34801561078f575f5ffd5b506103c6601e81565b3480156107a3575f5ffd5b5060075461039e906001600160a01b031681565b3480156107c2575f5ffd5b506102dd6107d136600461259d565b611149565b3480156107e1575f5ffd5b506103c660085481565b3480156107f6575f5ffd5b506102dd6108053660046125da565b61132e565b348015610815575f5ffd5b5060075461033c90600160a01b900460ff1681565b348015610835575f5ffd5b506102dd6108443660046125da565b611396565b348015610854575f5ffd5b506103c6610863366004612628565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b348015610898575f5ffd5b506103c6600e5481565b3480156108ad575f5ffd5b5060075461033c90600160b01b900460ff1681565b3480156108cd575f5ffd5b506102dd6108dc36600461259d565b6113fe565b3480156108ec575f5ffd5b506102dd6108fb3660046125da565b6114a8565b34801561090b575f5ffd5b506102dd61091a36600461259d565b611526565b34801561092a575f5ffd5b506102dd6109393660046125da565b611568565b348015610949575f5ffd5b506103c6600d5481565b34801561095e575f5ffd5b5060065461039e906001600160a01b031681565b61097a6115e6565b600754600160c01b900460ff16156109a5576040516319f4db0f60e31b815260040160405180910390fd5b6007805460ff60c01b1916600160c01b17905543600855426009556040517f02ac8168caf2f254b394bd39e19417c5c28124ab89c9bc2d44921b19808e2669905f90a1565b6060600480546109f990612654565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2590612654565b8015610a705780601f10610a4757610100808354040283529160200191610a70565b820191905f5260205f20905b815481529060010190602001808311610a5357829003601f168201915b5050505050905090565b5f33610a87818585611612565b60019150505b92915050565b610a9b6115e6565b5f5b82811015610add57610ad5848483818110610aba57610aba61268c565b9050602002016020810190610acf919061259d565b83611624565b600101610a9d565b50505050565b5f33610af085828561167f565b610afb8585856116f4565b506001949350505050565b610b0e6115e6565b60078054821515600160a01b0260ff60a01b199091161790556040517ff771b1e218dc92494b39e21852f9c24c3b448d6697c2b485cc1f0cff3c9ec78190610b5b90831515815260200190565b60405180910390a150565b610b6e6115e6565b60078054821515600160a81b0260ff60a81b199091161790556040517f381fb4c4aa72df83c60e7e567b9b6faf3fc2b05a6da932da9f071d63442c828f90610b5b90831515815260200190565b610bc36115e6565b60078054821515600160b01b0260ff60b01b199091161790556040517f06cf69227e5c2b5a71319bc3784f6a5355ea0ba2a69bc4c39d64413dfa5a012b90610b5b90831515815260200190565b610c186115e6565b6103e8610c2460035490565b610c2f9060036126b4565b610c3991906126cb565b811015610c5957604051631fbaba3560e01b815260040160405180910390fd5b600d8190556040518181527fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618690602001610b5b565b610c966115e6565b610c9f5f611751565b565b6007546001600160a01b03163314610ccc57604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b038116610cf357604051639fabe1c160e01b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917f2b355c7f17401d9755d704a4cf6149a26deb56a381bb5d06c87b608183dbe09c91015b60405180910390a15050565b610d5b6115e6565b601e811115610d7d5760405163cd4e616760e01b815260040160405180910390fd5b601080549082905560408051838152602081018390527f125b37650f21d088600cef1223439f6a8bd70800debfd486c503a8a2d19d4b019101610d47565b6060600580546109f990612654565b610dd26115e6565b6001600160a01b0382165f9081526015602052604090205460ff1615610e0b576040516304eb79b560e31b815260040160405180910390fd5b610e158282611795565b5050565b610e216115e6565b5f5b82811015610add5760155f858584818110610e4057610e4061268c565b9050602002016020810190610e55919061259d565b6001600160a01b0316815260208101919091526040015f205460ff16158015610ed657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316848483818110610eb557610eb561268c565b9050602002016020810190610eca919061259d565b6001600160a01b031614155b8015610f11575030848483818110610ef057610ef061268c565b9050602002016020810190610f05919061259d565b6001600160a01b031614155b8015610f4c57505f848483818110610f2b57610f2b61268c565b9050602002016020810190610f40919061259d565b6001600160a01b031614155b8015610fe9575060135f858584818110610f6857610f6861268c565b9050602002016020810190610f7d919061259d565b6001600160a01b0316815260208101919091526040015f205460ff16158015610fe9575060145f858584818110610fb657610fb661268c565b9050602002016020810190610fcb919061259d565b6001600160a01b0316815260208101919091526040015f205460ff16155b1561101e5761101e8484838181106110035761100361268c565b9050602002016020810190611018919061259d565b836117f0565b600101610e23565b5f33610a878185856116f4565b61103b6115e6565b5f5b82811015610add5761107584848381811061105a5761105a61268c565b905060200201602081019061106f919061259d565b8361184b565b60010161103d565b6110856115e6565b5f61108f60035490565b9050620f42406110a08260016126b4565b6110aa91906126cb565b8210156110ca57604051631fbaba3560e01b815260040160405180910390fd5b6103e86110d88260056126b4565b6110e291906126cb565b8211156111025760405163fd7850ad60e01b815260040160405180910390fd5b600e80549083905560408051848152602081018390527f190dc7c30bc62ef30e35c5f5512ad715a1bd03230f2d89c965249246c8d8ecca91015b60405180910390a1505050565b6111516115e6565b335f6001600160a01b0383166111f75750475f8161118257604051634870bf9160e01b815260040160405180910390fd5b6040516001600160a01b0384169083905f81818185875af1925050503d805f81146111c8576040519150601f19603f3d011682016040523d82523d5f602084013e6111cd565b606091505b505080915050806111f157604051633398652560e11b815260040160405180910390fd5b506112ef565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015611239573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061125d91906126ea565b90505f811161127f5760405163df95788360e01b815260040160405180910390fd5b60405163a9059cbb60e01b8152336004820152602481018290526001600160a01b0384169063a9059cbb906044016020604051808303815f875af11580156112c9573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112ed9190612701565b505b604080516001600160a01b0385168152602081018390527f07c81a5e6d155913a9ed2ce53630058179c89fc94bb5de130620b0245c9f6a0b910161113c565b6113366115e6565b601e8111156113585760405163cd4e616760e01b815260040160405180910390fd5b601180549082905560408051838152602081018390527f8fd531ce6f3cbc5b8cc01a0413b630e3f11569780ee5cf8d0c78e03bca30bc259101610d47565b61139e6115e6565b601e8111156113c05760405163cd4e616760e01b815260040160405180910390fd5b600f80549082905560408051838152602081018390527f5fcc0eea159d45a3b8d481be746c9beed251431a542a5fed4484be37ab783e8d9101610d47565b6006546001600160a01b0316331461142957604051636edaef2f60e11b815260040160405180910390fd5b6001600160a01b03811661145057604051639fabe1c160e01b815260040160405180910390fd5b600680546001600160a01b038381166001600160a01b03198316811790935560408051938452911660208301819052917fe20a721838fcbbb3840bd5d97dde1ffeb479fe73d75736fa6fdfc0f220aae0059101610d47565b6114b06115e6565b6103e86114bc60035490565b6114c79060026126b4565b6114d191906126cb565b8110156114f157604051631fbaba3560e01b815260040160405180910390fd5b600c8190556040518181527f3c0ac525ebd597ae4e1201e687d8a7424b740a53b775b1527eb1c1936c1bd3b790602001610b5b565b61152e6115e6565b6001600160a01b03811661155c57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b61156581611751565b50565b6115706115e6565b6103e861157c60035490565b6115879060026126b4565b61159191906126cb565b8110156115b157604051631fbaba3560e01b815260040160405180910390fd5b600b8190556040518181527f16fd9174d80e7089ed0c10c47c8079476be2ec28b97c4b40846cffd8a7aa9e9f90602001610b5b565b5f546001600160a01b03163314610c9f5760405163118cdaa760e01b8152336004820152602401611553565b61161f83838360016118a6565b505050565b6001600160a01b0382165f81815260146020908152604091829020805460ff19168515159081179091558251938452908301527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc929101610d47565b6001600160a01b038381165f908152600260209081526040808320938616835292905220545f198114610add57818110156116e657604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401611553565b610add84848484035f6118a6565b6001600160a01b03831661171d57604051634b637e8f60e11b81525f6004820152602401611553565b6001600160a01b0382166117465760405163ec442f0560e01b81525f6004820152602401611553565b61161f838383611978565b5f546001600160a01b031680156117765761176c815f61184b565b611776815f611624565b61178182600161184b565b61178c826001611624565b610e1582612054565b6001600160a01b0382165f81815260156020908152604091829020805460ff19168515159081179091558251938452908301527fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab9101610d47565b6001600160a01b0382165f81815260126020908152604091829020805460ff19168515159081179091558251938452908301527ff7f8b40d08076851dfb7cfd6c584ae9a829a570f264abee45e0d7ca342ae8dc89101610d47565b6001600160a01b0382165f81815260136020908152604091829020805460ff19168515159081179091558251938452908301527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610d47565b6001600160a01b0384166118cf5760405163e602df0560e01b81525f6004820152602401611553565b6001600160a01b0383166118f857604051634a1406b160e11b81525f6004820152602401611553565b6001600160a01b038085165f9081526002602090815260408083209387168352929052208290558015610add57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161196a91815260200190565b60405180910390a350505050565b6001600160a01b0383165f9081526012602052604090205433903290439060ff16156119b7576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316836001600160a01b031614806119ef57506001600160a01b0383165f9081526012602052604090205460ff16155b611a0c576040516339a9b03560e21b815260040160405180910390fd5b856001600160a01b0316826001600160a01b03161480611a3d5750826001600160a01b0316826001600160a01b0316145b80611a6057506001600160a01b0382165f9081526012602052604090205460ff16155b611a7d576040516339a9b03560e21b815260040160405180910390fd5b600754600160c01b900460ff1680611aac57506001600160a01b0386165f9081526014602052604090205460ff165b80611ace57506001600160a01b0385165f9081526014602052604090205460ff165b611aeb57604051638dda39df60e01b815260040160405180910390fd5b6007545f90600160a01b900460ff168015611b105750600754600160b81b900460ff16155b8015611b5657506001600160a01b0387165f9081526014602052604090205460ff1680611b5457506001600160a01b0386165f9081526014602052604090205460ff165b155b90508015611e50575f546001600160a01b03888116911614801590611b8857505f546001600160a01b03878116911614155b8015611b9c57506001600160a01b03861615155b8015611bb357506001600160a01b03861661dead14155b15611e5057600754600160a81b900460ff1615611cd6577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316866001600160a01b031614158015611c3e57507f000000000000000000000000fb470260059b0607b7ec32992f5ed7c54dfd27916001600160a01b0316866001600160a01b031614155b15611cd657611c4e60038361271c565b6001600160a01b0384165f90815260166020526040902054108015611c935750611c7960038361271c565b6001600160a01b0387165f90815260166020526040902054105b611cb057604051630301a6ed60e61b815260040160405180910390fd5b6001600160a01b038084165f908152601660205260408082208590559188168152208290555b6001600160a01b0387165f9081526015602052604090205460ff168015611d1557506001600160a01b0386165f9081526014602052604090205460ff16155b15611d8657600b54851115611d3d57604051632c676b8560e21b815260040160405180910390fd5b600d546001600160a01b0387165f90815260016020526040902054611d62908761272f565b1115611d815760405163d867451160e01b815260040160405180910390fd5b611e50565b6001600160a01b0386165f9081526015602052604090205460ff168015611dc557506001600160a01b0387165f9081526014602052604090205460ff16155b15611ded57600c54851115611d81576040516338aa438560e21b815260040160405180910390fd5b6001600160a01b0386165f9081526014602052604090205460ff16611e5057600d546001600160a01b0387165f90815260016020526040902054611e31908761272f565b1115611e505760405163d867451160e01b815260040160405180910390fd5b6007545f90600160b01b900460ff168015611e755750600754600160b81b900460ff16155b8015611ebb57506001600160a01b0388165f9081526013602052604090205460ff1680611eb957506001600160a01b0387165f9081526013602052604090205460ff165b155b90508015611fdc576001600160a01b0387165f9081526015602052604081205460ff168015611eeb57505f601054115b15611f1157606460105488611f0091906126b4565b611f0a91906126cb565b9050611fbd565b6001600160a01b0389165f9081526015602052604090205460ff168015611f3957505f600f54115b15611f4e576064600f5488611f0091906126b4565b6001600160a01b0388165f9081526015602052604090205460ff16158015611f8e57506001600160a01b0389165f9081526015602052604090205460ff16155b8015611f9b57505f601154115b15611fbd57606460115488611fb091906126b4565b611fba91906126cb565b90505b8015611fda57611fcd818861271c565b9650611fda8930836120a3565b505b305f90815260016020526040902054600e5481101582801561201657506001600160a01b038a165f9081526015602052604090205460ff16155b801561201f5750805b1561203d57600a5485111561203d57612037826121c9565b600a8590555b6120488a8a8a6120a3565b50505050505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0383166120cd578060035f8282546120c2919061272f565b9091555061213d9050565b6001600160a01b0383165f908152600160205260409020548181101561211f5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401611553565b6001600160a01b0384165f9081526001602052604090209082900390555b6001600160a01b03821661215957600380548290039055612177565b6001600160a01b0382165f9081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121bc91815260200190565b60405180910390a3505050565b6007805460ff60b81b1916600160b81b1790556040805160028082526060820183525f928392919060208301908036833701905050905030815f815181106122135761221361268c565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561228f573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122b39190612742565b816001815181106122c6576122c661268c565b60200260200101906001600160a01b031690816001600160a01b0316815250505f600e5460146122f691906126b4565b905080841115612304578093505b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123589087905f9087903090429060040161275d565b5f604051808303815f87803b15801561236f575f5ffd5b505af1158015612381573d5f5f3e3d5ffd5b504792505f915061239590506004836126cb565b90505f6123a2828461271c565b6006546040519192506001600160a01b03169082905f81818185875af1925050503d805f81146123ed576040519150601f19603f3d011682016040523d82523d5f602084013e6123f2565b606091505b50506007546040519197506001600160a01b03169083905f81818185875af1925050503d805f811461243f576040519150601f19603f3d011682016040523d82523d5f602084013e612444565b606091505b50506007805460ff60b81b191690555050505050505050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b6001600160a01b0381168114611565575f5ffd5b5f5f604083850312156124b7575f5ffd5b82356124c281612492565b946020939093013593505050565b8015158114611565575f5ffd5b5f5f5f604084860312156124ef575f5ffd5b833567ffffffffffffffff811115612505575f5ffd5b8401601f81018613612515575f5ffd5b803567ffffffffffffffff81111561252b575f5ffd5b8660208260051b840101111561253f575f5ffd5b602091820194509250840135612554816124d0565b809150509250925092565b5f5f5f60608486031215612571575f5ffd5b833561257c81612492565b9250602084013561258c81612492565b929592945050506040919091013590565b5f602082840312156125ad575f5ffd5b81356125b881612492565b9392505050565b5f602082840312156125cf575f5ffd5b81356125b8816124d0565b5f602082840312156125ea575f5ffd5b5035919050565b5f5f60408385031215612602575f5ffd5b823561260d81612492565b9150602083013561261d816124d0565b809150509250929050565b5f5f60408385031215612639575f5ffd5b823561264481612492565b9150602083013561261d81612492565b600181811c9082168061266857607f821691505b60208210810361268657634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417610a8d57610a8d6126a0565b5f826126e557634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156126fa575f5ffd5b5051919050565b5f60208284031215612711575f5ffd5b81516125b8816124d0565b81810381811115610a8d57610a8d6126a0565b80820180821115610a8d57610a8d6126a0565b5f60208284031215612752575f5ffd5b81516125b881612492565b5f60a0820187835286602084015260a0604084015280865180835260c0850191506020880192505f5b818110156127ad5783516001600160a01b0316835260209384019390920191600101612786565b50506001600160a01b03959095166060840152505060800152939250505056fea26469706673582212202db9594d25ae4524032050b93b00844445faaeac29431845e64b4e1d7b76f88f64736f6c634300081c0033
Deployed Bytecode Sourcemap
26862:15619:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31384:223;;;;;;;;;;;;;:::i;13529:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15863:222;;;;;;;;;;-1:-1:-1;15863:222:0;;;;;:::i;:::-;;:::i;:::-;;;1110:14:1;;1103:22;1085:41;;1073:2;1058:18;15863:222:0;945:187:1;34835:239:0;;;;;;;;;;-1:-1:-1;34835:239:0;;;;;:::i;:::-;;:::i;26902:49::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2198:32:1;;;2180:51;;2168:2;2153:18;26902:49:0;2010:227:1;14631:99:0;;;;;;;;;;-1:-1:-1;14710:12:0;;14631:99;;;2388:25:1;;;2376:2;2361:18;14631:99:0;2242:177:1;16663:283:0;;;;;;;;;;-1:-1:-1;16663:283:0;;;;;:::i;:::-;;:::i;27567:22::-;;;;;;;;;;;;;;;;27215;;;;;;;;;;-1:-1:-1;27215:22:0;;;;-1:-1:-1;;;27215:22:0;;;;;;14482:84;;;;;;;;;;-1:-1:-1;14482:84:0;;14556:2;3079:36:1;;3067:2;3052:18;14482:84:0;2937:184:1;27631:37:0;;;;;;;;;;-1:-1:-1;27631:37:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32368:138;;;;;;;;;;-1:-1:-1;32368:138:0;;;;;:::i;:::-;;:::i;27539:21::-;;;;;;;;;;;;;;;;26960:38;;;;;;;;;;;;;;;27675:50;;;;;;;;;;-1:-1:-1;27675:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32514:144;;;;;;;;;;-1:-1:-1;32514:144:0;;;;;:::i;:::-;;:::i;32666:133::-;;;;;;;;;;-1:-1:-1;32666:133:0;;;;;:::i;:::-;;:::i;27732:52::-;;;;;;;;;;-1:-1:-1;27732:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33217:207;;;;;;;;;;-1:-1:-1;33217:207:0;;;;;:::i;:::-;;:::i;27118:29::-;;;;;;;;;;-1:-1:-1;27118:29:0;;;;-1:-1:-1;;;27118:29:0;;;;;;14793:118;;;;;;;;;;-1:-1:-1;14793:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14885:18:0;14858:7;14885:18;;;:9;:18;;;;;;;14793:118;27409:21;;;;;;;;;;;;;;;;25510:103;;;;;;;;;;;;;:::i;31987:373::-;;;;;;;;;;-1:-1:-1;31987:373:0;;;;;:::i;:::-;;:::i;27279:25::-;;;;;;;;;;;;;;;;24835:87;;;;;;;;;;-1:-1:-1;24881:7:0;24908:6;-1:-1:-1;;;;;24908:6:0;24835:87;;34080:232;;;;;;;;;;-1:-1:-1;34080:232:0;;;;;:::i;:::-;;:::i;13739:95::-;;;;;;;;;;;;;:::i;35663:234::-;;;;;;;;;;-1:-1:-1;35663:234:0;;;;;:::i;:::-;;:::i;35082:573::-;;;;;;;;;;-1:-1:-1;35082:573:0;;;;;:::i;:::-;;:::i;15116:182::-;;;;;;;;;;-1:-1:-1;15116:182:0;;;;;:::i;:::-;;:::i;27596:26::-;;;;;;;;;;;;;;;;34592:235;;;;;;;;;;-1:-1:-1;34592:235:0;;;;;:::i;:::-;;:::i;33432:408::-;;;;;;;;;;-1:-1:-1;33432:408:0;;;;;:::i;:::-;;:::i;27791:57::-;;;;;;;;;;-1:-1:-1;27791:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27437:22;;;;;;;;;;;;;;;;27364:36;;;;;;;;;;;;27398:2;27364:36;;27043:32;;;;;;;;;;-1:-1:-1;27043:32:0;;;;-1:-1:-1;;;;;27043:32:0;;;35905:674;;;;;;;;;;-1:-1:-1;35905:674:0;;;;;:::i;:::-;;:::i;27246:26::-;;;;;;;;;;;;;;;;34320:264;;;;;;;;;;-1:-1:-1;34320:264:0;;;;;:::i;:::-;;:::i;27084:27::-;;;;;;;;;;-1:-1:-1;27084:27:0;;;;-1:-1:-1;;;27084:27:0;;;;;;33848:224;;;;;;;;;;-1:-1:-1;33848:224:0;;;;;:::i;:::-;;:::i;15361:183::-;;;;;;;;;;-1:-1:-1;15361:183:0;;;;;:::i;:::-;-1:-1:-1;;;;;15509:18:0;;;15477:7;15509:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15361:183;27499:33;;;;;;;;;;;;;;;;27154:24;;;;;;;;;;-1:-1:-1;27154:24:0;;;;-1:-1:-1;;;27154:24:0;;;;;;31615:364;;;;;;;;;;-1:-1:-1;31615:364:0;;;;;:::i;:::-;;:::i;33010:199::-;;;;;;;;;;-1:-1:-1;33010:199:0;;;;;:::i;:::-;;:::i;25768:220::-;;;;;;;;;;-1:-1:-1;25768:220:0;;;;;:::i;:::-;;:::i;32807:195::-;;;;;;;;;;-1:-1:-1;32807:195:0;;;;;:::i;:::-;;:::i;27466:24::-;;;;;;;;;;;;;;;;27005:31;;;;;;;;;;-1:-1:-1;27005:31:0;;;;-1:-1:-1;;;;;27005:31:0;;;31384:223;24721:13;:11;:13::i;:::-;31441:10:::1;::::0;-1:-1:-1;;;31441:10:0;::::1;;;31440:11;31432:39;;;;-1:-1:-1::0;;;31432:39:0::1;;;;;;;;;;;;31482:10;:17:::0;;-1:-1:-1;;;;31482:17:0::1;-1:-1:-1::0;;;31482:17:0::1;::::0;;31524:12:::1;31510:11;:26:::0;31560:15:::1;31547:10;:28:::0;31591:8:::1;::::0;::::1;::::0;31482:17;;31591:8:::1;31384:223::o:0;13529:91::-;13574:13;13607:5;13600:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13529:91;:::o;15863:222::-;15963:4;4824:10;16024:31;4824:10;16040:7;16049:5;16024:8;:31::i;:::-;16073:4;16066:11;;;15863:222;;;;;:::o;34835:239::-;24721:13;:11;:13::i;:::-;34961:9:::1;34956:111;34976:19:::0;;::::1;34956:111;;;35017:38;35036:8;;35045:1;35036:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;35049:5;35017:18;:38::i;:::-;34997:3;;34956:111;;;;34835:239:::0;;;:::o;16663:283::-;16784:4;4824:10;16842:37;16858:4;4824:10;16873:5;16842:15;:37::i;:::-;16890:26;16900:4;16906:2;16910:5;16890:9;:26::i;:::-;-1:-1:-1;16934:4:0;;16663:283;-1:-1:-1;;;;16663:283:0:o;32368:138::-;24721:13;:11;:13::i;:::-;32436:15:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;32436:23:0::1;-1:-1:-1::0;;;;32436:23:0;;::::1;;::::0;;32475::::1;::::0;::::1;::::0;::::1;::::0;32454:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;32475:23:0::1;;;;;;;;32368:138:::0;:::o;32514:144::-;24721:13;:11;:13::i;:::-;32584:17:::1;:25:::0;;;::::1;;-1:-1:-1::0;;;32584:25:0::1;-1:-1:-1::0;;;;32584:25:0;;::::1;;::::0;;32625::::1;::::0;::::1;::::0;::::1;::::0;32604:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;32666:133:0;24721:13;:11;:13::i;:::-;32733:12:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;32733:20:0::1;-1:-1:-1::0;;;;32733:20:0;;::::1;;::::0;;32769:22:::1;::::0;::::1;::::0;::::1;::::0;32748:5;1110:14:1;1103:22;1085:41;;1073:2;1058:18;;945:187;33217:207:0;24721:13;:11;:13::i;:::-;33326:4:::1;33305:13;14710:12:::0;;;14631:99;33305:13:::1;:17;::::0;33321:1:::1;33305:17;:::i;:::-;33304:26;;;;:::i;:::-;33293:6;:38;;33285:63;;;;-1:-1:-1::0;;;33285:63:0::1;;;;;;;;;;;;33359:9;:18:::0;;;33393:23:::1;::::0;2388:25:1;;;33393:23:0::1;::::0;2376:2:1;2361:18;33393:23:0::1;2242:177:1::0;25510:103:0;24721:13;:11;:13::i;:::-;25575:30:::1;25602:1;25575:18;:30::i;:::-;25510:103::o:0;31987:373::-;32087:17;;-1:-1:-1;;;;;32087:17:0;32073:10;:31;32065:57;;;;-1:-1:-1;;;32065:57:0;;;;;;;;;;;;-1:-1:-1;;;;;32141:32:0;;32133:56;;;;-1:-1:-1;;;32133:56:0;;;;;;;;;;;;32220:17;;;-1:-1:-1;;;;;32248:38:0;;;-1:-1:-1;;;;;;32248:38:0;;;;;;;32302:50;;;6061:51:1;;;32220:17:0;;6143:2:1;6128:18;;6121:60;;;32220:17:0;32302:50;;6034:18:1;32302:50:0;;;;;;;;32054:306;31987:373;:::o;34080:232::-;24721:13;:11;:13::i;:::-;27398:2:::1;34157:8;:19;;34149:42;;;;-1:-1:-1::0;;;34149:42:0::1;;;;;;;;;;;;34221:7;::::0;;34239:18;;;;34273:31:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;34273:31:0::1;::::0;6339:18:1;34273:31:0::1;6192:248:1::0;13739:95:0;13786:13;13819:7;13812:14;;;;;:::i;35663:234::-;24721:13;:11;:13::i;:::-;-1:-1:-1;;;;;35788:31:0;::::1;;::::0;;;:25:::1;:31;::::0;;;;;::::1;;35787:32;35779:58;;;;-1:-1:-1::0;;;35779:58:0::1;;;;;;;;;;;;35848:41;35877:4;35883:5;35848:28;:41::i;:::-;35663:234:::0;;:::o;35082:573::-;24721:13;:11;:13::i;:::-;35198:9:::1;35193:455;35213:19:::0;;::::1;35193:455;;;35278:25;:38;35304:8;;35313:1;35304:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35278:38:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35278:38:0;;::::1;;35277:39;35276:103:::0;::::1;;;;35362:15;-1:-1:-1::0;;;;;35339:39:0::1;:8;;35348:1;35339:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35339:39:0::1;;;35276:103;:154;;;;-1:-1:-1::0;35424:4:0::1;35401:8:::0;;35410:1;35401:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35401:28:0::1;;;35276:154;:202;;;;-1:-1:-1::0;35475:1:0::1;35452:8:::0;;35461:1;35452:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35452:25:0::1;;;35276:202;:316;;;;;35501:18;:31;35520:8;;35529:1;35520:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35501:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35501:31:0;;::::1;;35500:32;:91:::0;::::1;;;;35558:20;:33;35579:8;;35588:1;35579:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;35558:33:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;35558:33:0;;::::1;;35557:34;35500:91;35254:382;;;35608:28;35617:8;;35626:1;35617:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;35630:5;35608:8;:28::i;:::-;35234:3;;35193:455;;15116:182:::0;15185:4;4824:10;15241:27;4824:10;15258:2;15262:5;15241:9;:27::i;34592:235::-;24721:13;:11;:13::i;:::-;34716:9:::1;34711:109;34731:19:::0;;::::1;34711:109;;;34772:36;34789:8;;34798:1;34789:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;34802:5;34772:16;:36::i;:::-;34752:3;;34711:109;;33432:408:::0;24721:13;:11;:13::i;:::-;33509:20:::1;33532:13;14710:12:::0;;;14631:99;33532:13:::1;33509:36:::0;-1:-1:-1;33595:7:0::1;33575:16;33509:36:::0;33590:1:::1;33575:16;:::i;:::-;33574:28;;;;:::i;:::-;33564:6;:38;;33556:63;;;;-1:-1:-1::0;;;33556:63:0::1;;;;;;;;;;;;33669:4;33649:16;:12:::0;33664:1:::1;33649:16;:::i;:::-;33648:25;;;;:::i;:::-;33638:6;:35;;33630:61;;;;-1:-1:-1::0;;;33630:61:0::1;;;;;;;;;;;;33721:18;::::0;;33750:27;;;;33793:39:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;33793:39:0::1;::::0;6339:18:1;33793:39:0::1;;;;;;;;33498:342;;33432:408:::0;:::o;35905:674::-;24721:13;:11;:13::i;:::-;35997:10:::1;35980:14;-1:-1:-1::0;;;;;36047:20:0;::::1;36043:478;;-1:-1:-1::0;36120:21:0::1;36084:12;36164:10:::0;36156:37:::1;;;;-1:-1:-1::0;;;36156:37:0::1;;;;;;;;;;;;36222:39;::::0;-1:-1:-1;;;;;36222:20:0;::::1;::::0;36250:6;;36222:39:::1;::::0;;;36250:6;36222:20;:39:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36208:53;;;;;36284:7;36276:48;;;;-1:-1:-1::0;;;36276:48:0::1;;;;;;;;;;;;36069:267;36043:478;;;36366:39;::::0;-1:-1:-1;;;36366:39:0;;36399:4:::1;36366:39;::::0;::::1;2180:51:1::0;-1:-1:-1;;;;;36366:24:0;::::1;::::0;::::1;::::0;2153:18:1;;36366:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36357:48;;36437:1;36428:6;:10;36420:31;;;;-1:-1:-1::0;;;36420:31:0::1;;;;;;;;;;;;36466:43;::::0;-1:-1:-1;;;36466:43:0;;36490:10:::1;36466:43;::::0;::::1;7018:51:1::0;7085:18;;;7078:34;;;-1:-1:-1;;;;;36466:23:0;::::1;::::0;::::1;::::0;6991:18:1;;36466:43:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36043:478;36536:35;::::0;;-1:-1:-1;;;;;7036:32:1;;7018:51;;7100:2;7085:18;;7078:34;;;36536:35:0::1;::::0;6991:18:1;36536:35:0::1;6844:274:1::0;34320:264:0;24721:13;:11;:13::i;:::-;27398:2:::1;34405:12;:23;;34397:46;;;;-1:-1:-1::0;;;34397:46:0::1;;;;;;;;;;;;34473:11;::::0;;34495:26;;;;34537:39:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;34537:39:0::1;::::0;6339:18:1;34537:39:0::1;6192:248:1::0;33848:224:0;24721:13;:11;:13::i;:::-;27398:2:::1;33923:7;:18;;33915:41;;;;-1:-1:-1::0;;;33915:41:0::1;;;;;;;;;;;;33986:6;::::0;;34003:16;;;;34035:29:::1;::::0;;6366:25:1;;;6422:2;6407:18;;6400:34;;;34035:29:0::1;::::0;6339:18:1;34035:29:0::1;6192:248:1::0;31615:364:0;31713:16;;-1:-1:-1;;;;;31713:16:0;31699:10;:30;31691:56;;;;-1:-1:-1;;;31691:56:0;;;;;;;;;;;;-1:-1:-1;;;;;31766:31:0;;31758:55;;;;-1:-1:-1;;;31758:55:0;;;;;;;;;;;;31844:16;;;-1:-1:-1;;;;;31871:36:0;;;-1:-1:-1;;;;;;31871:36:0;;;;;;;31923:48;;;6061:51:1;;;31844:16:0;;6143:2:1;6128:18;;6121:60;;;31844:16:0;31923:48;;6034:18:1;31923:48:0;5887:300:1;33010:199:0;24721:13;:11;:13::i;:::-;33117:4:::1;33096:13;14710:12:::0;;;14631:99;33096:13:::1;:17;::::0;33112:1:::1;33096:17;:::i;:::-;33095:26;;;;:::i;:::-;33084:6;:38;;33076:63;;;;-1:-1:-1::0;;;33076:63:0::1;;;;;;;;;;;;33150:7;:16:::0;;;33182:19:::1;::::0;2388:25:1;;;33182:19:0::1;::::0;2376:2:1;2361:18;33182:19:0::1;2242:177:1::0;25768:220:0;24721:13;:11;:13::i;:::-;-1:-1:-1;;;;;25853:22:0;::::1;25849:93;;25899:31;::::0;-1:-1:-1;;;25899:31:0;;25927:1:::1;25899:31;::::0;::::1;2180:51:1::0;2153:18;;25899:31:0::1;;;;;;;;25849:93;25952:28;25971:8;25952:18;:28::i;:::-;25768:220:::0;:::o;32807:195::-;24721:13;:11;:13::i;:::-;32913:4:::1;32892:13;14710:12:::0;;;14631:99;32892:13:::1;:17;::::0;32908:1:::1;32892:17;:::i;:::-;32891:26;;;;:::i;:::-;32880:6;:38;;32872:63;;;;-1:-1:-1::0;;;32872:63:0::1;;;;;;;;;;;;32946:6;:15:::0;;;32977:17:::1;::::0;2388:25:1;;;32977:17:0::1;::::0;2376:2:1;2361:18;32977:17:0::1;2242:177:1::0;25000:166:0;24881:7;24908:6;-1:-1:-1;;;;;24908:6:0;4824:10;25060:23;25056:103;;25107:40;;-1:-1:-1;;;25107:40:0;;4824:10;25107:40;;;2180:51:1;2153:18;;25107:40:0;2010:227:1;20824:164:0;20943:37;20952:5;20959:7;20968:5;20975:4;20943:8;:37::i;:::-;20824:164;;;:::o;41921:179::-;-1:-1:-1;;;;;42006:29:0;;;;;;:20;:29;;;;;;;;;:37;;-1:-1:-1;;42006:37:0;;;;;;;;;;42059:33;;7541:51:1;;;7608:18;;;7601:50;42059:33:0;;7514:18:1;42059:33:0;7373:284:1;22617:603:0;-1:-1:-1;;;;;15509:18:0;;;22751:24;15509:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;22818:37:0;;22814:399;;22895:5;22876:16;:24;22872:214;;;22928:142;;-1:-1:-1;;;22928:142:0;;-1:-1:-1;;;;;7882:32:1;;22928:142:0;;;7864:51:1;7931:18;;;7924:34;;;7974:18;;;7967:34;;;7837:18;;22928:142:0;7662:345:1;22872:214:0;23129:57;23138:5;23145:7;23173:5;23154:16;:24;23180:5;23129:8;:57::i;17331:342::-;-1:-1:-1;;;;;17449:18:0;;17445:88;;17491:30;;-1:-1:-1;;;17491:30:0;;17518:1;17491:30;;;2180:51:1;2153:18;;17491:30:0;2010:227:1;17445:88:0;-1:-1:-1;;;;;17547:16:0;;17543:88;;17587:32;;-1:-1:-1;;;17587:32:0;;17616:1;17587:32;;;2180:51:1;2153:18;;17587:32:0;2010:227:1;17543:88:0;17641:24;17649:4;17655:2;17659:5;17641:7;:24::i;36587:398::-;36670:16;24908:6;-1:-1:-1;;;;;24908:6:0;36711:22;;36707:138;;36750:33;36767:8;36777:5;36750:16;:33::i;:::-;36798:35;36817:8;36827:5;36798:18;:35::i;:::-;36855:32;36872:8;36882:4;36855:16;:32::i;:::-;36898:34;36917:8;36927:4;36898:18;:34::i;:::-;36943;36968:8;36943:24;:34::i;42260:218::-;-1:-1:-1;;;;;42375:31:0;;;;;;:25;:31;;;;;;;;;:39;;-1:-1:-1;;42375:39:0;;;;;;;;;;42430:40;;7541:51:1;;;7608:18;;;7601:50;42430:40:0;;7514:18:1;42430:40:0;7373:284:1;42108:144:0;-1:-1:-1;;;;;42183:14:0;;;;;;:5;:14;;;;;;;;;:22;;-1:-1:-1;;42183:22:0;;;;;;;;;;42221:23;;7541:51:1;;;7608:18;;;7601:50;42221:23:0;;7514:18:1;42221:23:0;7373:284:1;41740:173:0;-1:-1:-1;;;;;41823:27:0;;;;;;:18;:27;;;;;;;;;:35;;-1:-1:-1;;41823:35:0;;;;;;;;;;41874:31;;7541:51:1;;;7608:18;;;7601:50;41874:31:0;;7514:18:1;41874:31:0;7373:284:1;21839:486:0;-1:-1:-1;;;;;21995:19:0;;21991:91;;22038:32;;-1:-1:-1;;;22038:32:0;;22067:1;22038:32;;;2180:51:1;2153:18;;22038:32:0;2010:227:1;21991:91:0;-1:-1:-1;;;;;22096:21:0;;22092:92;;22141:31;;-1:-1:-1;;;22141:31:0;;22169:1;22141:31;;;2180:51:1;2153:18;;22141:31:0;2010:227:1;22092:92:0;-1:-1:-1;;;;;22194:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;22240:78;;;;22291:7;-1:-1:-1;;;;;22275:31:0;22284:5;-1:-1:-1;;;;;22275:31:0;;22300:5;22275:31;;;;2388:25:1;;2376:2;2361:18;;2242:177;22275:31:0;;;;;;;;21839:486;;;;:::o;36993:3748::-;-1:-1:-1;;;;;37254:11:0;;37123:14;37254:11;;;:5;:11;;;;;;37140:10;;37178:9;;37220:12;;37254:11;;37253:12;37245:36;;;;-1:-1:-1;;;37245:36:0;;;;;;;;;;;;37310:4;-1:-1:-1;;;;;37300:14:0;:6;-1:-1:-1;;;;;37300:14:0;;:32;;;-1:-1:-1;;;;;;37319:13:0;;;;;;:5;:13;;;;;;;;37318:14;37300:32;37292:56;;;;-1:-1:-1;;;37292:56:0;;;;;;;;;;;;37391:4;-1:-1:-1;;;;;37381:14:0;:6;-1:-1:-1;;;;;37381:14:0;;:34;;;;37409:6;-1:-1:-1;;;;;37399:16:0;:6;-1:-1:-1;;;;;37399:16:0;;37381:34;:52;;;-1:-1:-1;;;;;;37420:13:0;;;;;;:5;:13;;;;;;;;37419:14;37381:52;37359:113;;;;-1:-1:-1;;;37359:113:0;;;;;;;;;;;;37507:10;;-1:-1:-1;;;37507:10:0;;;;;:57;;-1:-1:-1;;;;;;37538:26:0;;;;;;:20;:26;;;;;;;;37507:57;:102;;;-1:-1:-1;;;;;;37585:24:0;;;;;;:20;:24;;;;;;;;37507:102;37485:163;;;;-1:-1:-1;;;37485:163:0;;;;;;;;;;;;37675:15;;37661:11;;-1:-1:-1;;;37675:15:0;;;;:43;;;;-1:-1:-1;37708:10:0;;-1:-1:-1;;;37708:10:0;;;;37707:11;37675:43;:117;;;;-1:-1:-1;;;;;;37737:26:0;;;;;;:20;:26;;;;;;;;;:54;;-1:-1:-1;;;;;;37767:24:0;;;;;;:20;:24;;;;;;;;37737:54;37735:57;37675:117;37661:131;;37807:6;37803:1688;;;24881:7;24908:6;-1:-1:-1;;;;;37852:15:0;;;24908:6;;37852:15;;;;:49;;-1:-1:-1;24881:7:0;24908:6;-1:-1:-1;;;;;37888:13:0;;;24908:6;;37888:13;;37852:49;:86;;;;-1:-1:-1;;;;;;37922:16:0;;;;37852:86;:128;;;;-1:-1:-1;;;;;;37959:21:0;;37973:6;37959:21;;37852:128;37830:1650;;;38019:17;;-1:-1:-1;;;38019:17:0;;;;38015:643;;;38079:15;-1:-1:-1;;;;;38065:30:0;:2;-1:-1:-1;;;;;38065:30:0;;;:53;;;;;38105:13;-1:-1:-1;;;;;38099:19:0;:2;-1:-1:-1;;;;;38099:19:0;;;38065:53;38061:578;;;38257:15;38271:1;38257:11;:15;:::i;:::-;-1:-1:-1;;;;;38185:36:0;;;;;;:28;:36;;;;;;:87;:207;;;;-1:-1:-1;38377:15:0;38391:1;38377:11;:15;:::i;:::-;-1:-1:-1;;;;;38309:32:0;;;;;;:28;:32;;;;;;:83;38185:207;38147:318;;;;-1:-1:-1;;;38147:318:0;;;;;;;;;;;;-1:-1:-1;;;;;38492:36:0;;;;;;;:28;:36;;;;;;:50;;;38569:32;;;;;;:46;;;38061:578;-1:-1:-1;;;;;38704:31:0;;;;;;:25;:31;;;;;;;;:60;;;;-1:-1:-1;;;;;;38740:24:0;;;;;;:20;:24;;;;;;;;38739:25;38704:60;38678:787;;;38825:6;;38815;:16;;38807:47;;;;-1:-1:-1;;;38807:47:0;;;;;;;;;;;;38937:9;;-1:-1:-1;;;;;14885:18:0;;14858:7;14885:18;;;:9;:18;;;;;;38911:22;;:6;:22;:::i;:::-;:35;;38877:142;;;;-1:-1:-1;;;38877:142:0;;;;;;;;;;;;38678:787;;;-1:-1:-1;;;;;39071:29:0;;;;;;:25;:29;;;;;;;;:60;;;;-1:-1:-1;;;;;;39105:26:0;;;;;;:20;:26;;;;;;;;39104:27;39071:60;39045:420;;;39192:7;;39182:6;:17;;39174:49;;;;-1:-1:-1;;;39174:49:0;;;;;;;;;;;39045:420;-1:-1:-1;;;;;39254:24:0;;;;;;:20;:24;;;;;;;;39249:216;;39363:9;;-1:-1:-1;;;;;14885:18:0;;14858:7;14885:18;;;:9;:18;;;;;;39337:22;;:6;:22;:::i;:::-;:35;;39303:142;;;;-1:-1:-1;;;39303:142:0;;;;;;;;;;;;39518:12;;39503;;-1:-1:-1;;;39518:12:0;;;;:40;;;;-1:-1:-1;39548:10:0;;-1:-1:-1;;;39548:10:0;;;;39547:11;39518:40;:110;;;;-1:-1:-1;;;;;;39577:24:0;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;39605:22:0;;;;;;:18;:22;;;;;;;;39577:50;39575:53;39518:110;39503:125;;39645:7;39641:679;;;-1:-1:-1;;;;;39704:29:0;;39669:12;39704:29;;;:25;:29;;;;;;;;:44;;;;;39747:1;39737:7;;:11;39704:44;39700:471;;;39797:3;39786:7;;39777:6;:16;;;;:::i;:::-;39776:24;;;;:::i;:::-;39769:31;;39700:471;;;-1:-1:-1;;;;;39826:31:0;;;;;;:25;:31;;;;;;;;:45;;;;;39870:1;39861:6;;:10;39826:45;39822:349;;;39919:3;39909:6;;39900;:15;;;;:::i;39822:349::-;-1:-1:-1;;;;;39967:29:0;;;;;;:25;:29;;;;;;;;39966:30;:83;;;;-1:-1:-1;;;;;;40018:31:0;;;;;;:25;:31;;;;;;;;40017:32;39966:83;:119;;;;;40084:1;40070:11;;:15;39966:119;39944:227;;;40152:3;40137:11;;40128:6;:20;;;;:::i;:::-;40127:28;;;;:::i;:::-;40120:35;;39944:227;40191:8;;40187:122;;40220:14;40230:4;40220:14;;:::i;:::-;;;40253:40;40267:4;40281;40288;40253:13;:40::i;:::-;39654:666;39641:679;40368:4;40332:15;14885:18;;;:9;:18;;;;;;40414;;40403:29;;;40447:7;:43;;;;-1:-1:-1;;;;;;40459:31:0;;;;;;:25;:31;;;;;;;;40458:32;40447:43;:57;;;;;40494:10;40447:57;40443:247;;;40539:26;;40525:11;:40;40521:158;;;40586:18;40596:7;40586:9;:18::i;:::-;40623:26;:40;;;40521:158;40702:31;40716:4;40722:2;40726:6;40702:13;:31::i;:::-;37112:3629;;;;;;;36993:3748;;;:::o;26148:191::-;26222:16;26241:6;;-1:-1:-1;;;;;26258:17:0;;;-1:-1:-1;;;;;;26258:17:0;;;;;;26291:40;;26241:6;;;;;;;26291:40;;26222:16;26291:40;26211:128;26148:191;:::o;17997:1169::-;-1:-1:-1;;;;;18121:18:0;;18117:552;;18275:5;18259:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;18117:552:0;;-1:-1:-1;18117:552:0;;-1:-1:-1;;;;;18335:15:0;;18313:19;18335:15;;;:9;:15;;;;;;18369:19;;;18365:117;;;18416:50;;-1:-1:-1;;;18416:50:0;;-1:-1:-1;;;;;7882:32:1;;18416:50:0;;;7864:51:1;7931:18;;;7924:34;;;7974:18;;;7967:34;;;7837:18;;18416:50:0;7662:345:1;18365:117:0;-1:-1:-1;;;;;18605:15:0;;;;;;:9;:15;;;;;18623:19;;;;18605:37;;18117:552;-1:-1:-1;;;;;18685:16:0;;18681:435;;18851:12;:21;;;;;;;18681:435;;;-1:-1:-1;;;;;19067:13:0;;;;;;:9;:13;;;;;:22;;;;;;18681:435;19148:2;-1:-1:-1;;;;;19133:25:0;19142:4;-1:-1:-1;;;;;19133:25:0;;19152:5;19133:25;;;;2388::1;;2376:2;2361:18;;2242:177;19133:25:0;;;;;;;;17997:1169;;;:::o;40749:983::-;29406:10;:17;;-1:-1:-1;;;;29406:17:0;-1:-1:-1;;;29406:17:0;;;40873:16:::1;::::0;;40887:1:::1;40873:16:::0;;;;;::::1;::::0;;-1:-1:-1;;;;40873:16:0;40887:1;40873:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;40873:16:0::1;40849:40;;40918:4;40900;40905:1;40900:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;40900:23:0::1;;;-1:-1:-1::0;;;;;40900:23:0::1;;;::::0;::::1;40944:15;-1:-1:-1::0;;;;;40944:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40934:4;40939:1;40934:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;40934:32:0::1;;;-1:-1:-1::0;;;;;40934:32:0::1;;;::::0;::::1;40979:21;41003:18;;41024:2;41003:23;;;;:::i;:::-;40979:47;;41053:13;41043:7;:23;41039:79;;;41093:13;41083:23;;41039:79;41130:192;::::0;-1:-1:-1;;;41130:192:0;;-1:-1:-1;;;;;41130:15:0::1;:66;::::0;::::1;::::0;:192:::1;::::0;41211:7;;41233:1:::1;::::0;41249:4;;41276::::1;::::0;41296:15:::1;::::0;41130:192:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;41356:21:0::1;::::0;-1:-1:-1;41335:18:0::1;::::0;-1:-1:-1;41418:14:0::1;::::0;-1:-1:-1;41431:1:0::1;41356:21:::0;41418:14:::1;:::i;:::-;41390:42:::0;-1:-1:-1;41445:24:0::1;41472:30;41390:42:::0;41472:10;:30:::1;:::i;:::-;41537:16;::::0;41529:83:::1;::::0;41445:57;;-1:-1:-1;;;;;;41537:16:0::1;::::0;41445:57;;41529:83:::1;::::0;;;41445:57;41537:16;41529:83:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;41647:17:0::1;::::0;41639:85:::1;::::0;41515:97;;-1:-1:-1;;;;;;41647:17:0::1;::::0;41678;;41639:85:::1;::::0;;;41678:17;41647;41639:85:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;29446:10:0;:18;;-1:-1:-1;;;;29446:18:0;;;-1:-1:-1;;;;;;;;40749:983:0:o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:131::-;-1:-1:-1;;;;;512:31:1;;502:42;;492:70;;558:1;555;548:12;573:367;641:6;649;702:2;690:9;681:7;677:23;673:32;670:52;;;718:1;715;708:12;670:52;757:9;744:23;776:31;801:5;776:31;:::i;:::-;826:5;904:2;889:18;;;;876:32;;-1:-1:-1;;;573:367:1:o;1137:118::-;1223:5;1216:13;1209:21;1202:5;1199:32;1189:60;;1245:1;1242;1235:12;1260:745;1352:6;1360;1368;1421:2;1409:9;1400:7;1396:23;1392:32;1389:52;;;1437:1;1434;1427:12;1389:52;1477:9;1464:23;1510:18;1502:6;1499:30;1496:50;;;1542:1;1539;1532:12;1496:50;1565:22;;1618:4;1610:13;;1606:27;-1:-1:-1;1596:55:1;;1647:1;1644;1637:12;1596:55;1687:2;1674:16;1713:18;1705:6;1702:30;1699:50;;;1745:1;1742;1735:12;1699:50;1800:7;1793:4;1783:6;1780:1;1776:14;1772:2;1768:23;1764:34;1761:47;1758:67;;;1821:1;1818;1811:12;1758:67;1852:4;1844:13;;;;-1:-1:-1;1876:6:1;-1:-1:-1;1917:20:1;;1904:34;1947:28;1904:34;1947:28;:::i;:::-;1994:5;1984:15;;;1260:745;;;;;:::o;2424:508::-;2501:6;2509;2517;2570:2;2558:9;2549:7;2545:23;2541:32;2538:52;;;2586:1;2583;2576:12;2538:52;2625:9;2612:23;2644:31;2669:5;2644:31;:::i;:::-;2694:5;-1:-1:-1;2751:2:1;2736:18;;2723:32;2764:33;2723:32;2764:33;:::i;:::-;2424:508;;2816:7;;-1:-1:-1;;;2896:2:1;2881:18;;;;2868:32;;2424:508::o;3126:247::-;3185:6;3238:2;3226:9;3217:7;3213:23;3209:32;3206:52;;;3254:1;3251;3244:12;3206:52;3293:9;3280:23;3312:31;3337:5;3312:31;:::i;:::-;3362:5;3126:247;-1:-1:-1;;;3126:247:1:o;3378:241::-;3434:6;3487:2;3475:9;3466:7;3462:23;3458:32;3455:52;;;3503:1;3500;3493:12;3455:52;3542:9;3529:23;3561:28;3583:5;3561:28;:::i;3832:226::-;3891:6;3944:2;3932:9;3923:7;3919:23;3915:32;3912:52;;;3960:1;3957;3950:12;3912:52;-1:-1:-1;4005:23:1;;3832:226;-1:-1:-1;3832:226:1:o;4063:382::-;4128:6;4136;4189:2;4177:9;4168:7;4164:23;4160:32;4157:52;;;4205:1;4202;4195:12;4157:52;4244:9;4231:23;4263:31;4288:5;4263:31;:::i;:::-;4313:5;-1:-1:-1;4370:2:1;4355:18;;4342:32;4383:30;4342:32;4383:30;:::i;:::-;4432:7;4422:17;;;4063:382;;;;;:::o;4450:388::-;4518:6;4526;4579:2;4567:9;4558:7;4554:23;4550:32;4547:52;;;4595:1;4592;4585:12;4547:52;4634:9;4621:23;4653:31;4678:5;4653:31;:::i;:::-;4703:5;-1:-1:-1;4760:2:1;4745:18;;4732:32;4773:33;4732:32;4773:33;:::i;4843:380::-;4922:1;4918:12;;;;4965;;;4986:61;;5040:4;5032:6;5028:17;5018:27;;4986:61;5093:2;5085:6;5082:14;5062:18;5059:38;5056:161;;5139:10;5134:3;5130:20;5127:1;5120:31;5174:4;5171:1;5164:15;5202:4;5199:1;5192:15;5056:161;;4843:380;;;:::o;5228:127::-;5289:10;5284:3;5280:20;5277:1;5270:31;5320:4;5317:1;5310:15;5344:4;5341:1;5334:15;5360:127;5421:10;5416:3;5412:20;5409:1;5402:31;5452:4;5449:1;5442:15;5476:4;5473:1;5466:15;5492:168;5565:9;;;5596;;5613:15;;;5607:22;;5593:37;5583:71;;5634:18;;:::i;5665:217::-;5705:1;5731;5721:132;;5775:10;5770:3;5766:20;5763:1;5756:31;5810:4;5807:1;5800:15;5838:4;5835:1;5828:15;5721:132;-1:-1:-1;5867:9:1;;5665:217::o;6655:184::-;6725:6;6778:2;6766:9;6757:7;6753:23;6749:32;6746:52;;;6794:1;6791;6784:12;6746:52;-1:-1:-1;6817:16:1;;6655:184;-1:-1:-1;6655:184:1:o;7123:245::-;7190:6;7243:2;7231:9;7222:7;7218:23;7214:32;7211:52;;;7259:1;7256;7249:12;7211:52;7291:9;7285:16;7310:28;7332:5;7310:28;:::i;8012:128::-;8079:9;;;8100:11;;;8097:37;;;8114:18;;:::i;8145:125::-;8210:9;;;8231:10;;;8228:36;;;8244:18;;:::i;8407:251::-;8477:6;8530:2;8518:9;8509:7;8505:23;8501:32;8498:52;;;8546:1;8543;8536:12;8498:52;8578:9;8572:16;8597:31;8622:5;8597:31;:::i;8663:959::-;8925:4;8973:3;8962:9;8958:19;9004:6;8993:9;8986:25;9047:6;9042:2;9031:9;9027:18;9020:34;9090:3;9085:2;9074:9;9070:18;9063:31;9114:6;9149;9143:13;9180:6;9172;9165:22;9218:3;9207:9;9203:19;9196:26;;9257:2;9249:6;9245:15;9231:29;;9278:1;9288:195;9302:6;9299:1;9296:13;9288:195;;;9367:13;;-1:-1:-1;;;;;9363:39:1;9351:52;;9432:2;9458:15;;;;9423:12;;;;9399:1;9317:9;9288:195;;;-1:-1:-1;;;;;;;9539:32:1;;;;9534:2;9519:18;;9512:60;-1:-1:-1;;9603:3:1;9588:19;9581:35;9500:3;8663:959;-1:-1:-1;;;8663:959:1:o
Swarm Source
ipfs://2db9594d25ae4524032050b93b00844445faaeac29431845e64b4e1d7b76f88f
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.