ETH Price: $2,622.40 (+0.98%)

Token

APOCALYPSE (APOCA)
 

Overview

Max Total Supply

1,920,000,000 APOCA

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
360,959.9906 APOCA

Value
$0.00
0x17f50ea08ebd0bd4148de58e57c72c08803c5634
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Apocalypse

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-14
*/

/**

    ___                           __                    
   /   |  ____  ____  _________ _/ /_  ______  ________ 
  / /| | / __ \/ __ \/ ___/ __ `/ / / / / __ \/ ___/ _ \
 / ___ |/ /_/ / /_/ / /__/ /_/ / / /_/ / /_/ (__  )  __/
/_/  |_/ .___/\____/\___/\__,_/_/\__, / .___/____/\___/ 
      /_/                       /____/_/                


*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract Apocalypse is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

	address public charityWallet;
    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
	uint256 public buyCharityFee;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
	uint256 public sellCharityFee;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

	uint256 public tokensForCharity;
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("APOCALYPSE", "APOCA") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

		uint256 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 4;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 1;

		uint256 _sellCharityFee = 0;
        uint256 _sellMarketingFee = 4;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 1;

        uint256 totalSupply = 1920000000 * 1e18;

        maxTransactionAmount = 38400000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 38400000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 40) / 10000; // 0.4% swap wallet

		buyCharityFee = _buyCharityFee;
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;

		sellCharityFee = _sellCharityFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;

		charityWallet = address(0x89274583319eD21657F04de9e44a378B7920C746); // set as charity wallet
        marketingWallet = address(0x19af22d9989ddb7396c2AA43A7a87c86BA34B9D5); // set as marketing wallet
        devWallet = address(0x89274583319eD21657F04de9e44a378B7920C746); // set as dev wallet

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 8, "Max BuyFee 8%");
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 10, "Max SellFee 10%");
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
				tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
				tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForCharity + tokensForLiquidity + tokensForMarketing + tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

		uint256 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
		tokensForCharity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");
        (success, ) = address(marketingWallet).call{value: ethForMarketing}("");


        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(charityWallet).call{value: address(this).balance}("");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805462ffffff19166001908117909155600e805460ff191690911790553480156200003057600080fd5b50604080518082018252600a81526941504f43414c5950534560b01b60208083019182528351808501909452600584526441504f434160d81b9084015281519192916200008091600391620006b8565b50805162000096906004906020840190620006b8565b505050620000b3620000ad6200040560201b60201c565b62000409565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d58160016200045b565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000120573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014691906200075e565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000194573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ba91906200075e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e91906200075e565b6001600160a01b031660a0819052620002499060016200045b565b60a05162000259906001620004d5565b6a1fc3842bd1f071c00000006009819055600b5560006004600180838382806b06342fd08f00f6378000000061271062000295826028620007a6565b620002a19190620007c8565b600a5560108990556011889055601287905560138690558587620002c68a8c620007eb565b620002d29190620007eb565b620002de9190620007eb565b600f5560158590556016849055601783905560188290558183620003038688620007eb565b6200030f9190620007eb565b6200031b9190620007eb565b601455600680546001600160a01b03199081167389274583319ed21657f04de9e44a378b7920c7469081179092556007805482167319af22d9989ddb7396c2aa43a7a87c86ba34b9d5179055600880549091169091179055620003926200038a6005546001600160a01b031690565b600162000529565b6200039f30600162000529565b620003ae61dead600162000529565b620003cd620003c56005546001600160a01b031690565b60016200045b565b620003da3060016200045b565b620003e961dead60016200045b565b620003f53382620005d3565b5050505050505050505062000843565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004aa5760405162461bcd60e51b815260206004820181905260248201526000805160206200332c83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005745760405162461bcd60e51b815260206004820181905260248201526000805160206200332c8339815191526044820152606401620004a1565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200062b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004a1565b80600260008282546200063f9190620007eb565b90915550506001600160a01b038216600090815260208190526040812080548392906200066e908490620007eb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006c69062000806565b90600052602060002090601f016020900481019282620006ea576000855562000735565b82601f106200070557805160ff191683800117855562000735565b8280016001018555821562000735579182015b828111156200073557825182559160200191906001019062000718565b506200074392915062000747565b5090565b5b8082111562000743576000815560010162000748565b6000602082840312156200077157600080fd5b81516001600160a01b03811681146200078957600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007c357620007c362000790565b500290565b600082620007e657634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111562000801576200080162000790565b500190565b600181811c908216806200081b57607f821691505b602082108114156200083d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612a8b620008a16000396000818161059301528181610f1301526117b901526000818161043c0152818161177b015281816123de01528181612497015281816124d30152818161254d01526125b50152612a8b6000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d3146109f0578063f2fde38b14610a06578063f637434214610a26578063f8b45b0514610a3c57600080fd5b8063e2f45605146109a5578063e7ad9fcd146109bb578063e884f260146109db57600080fd5b8063c8c8ebe4116100d1578063c8c8ebe414610913578063d257b34f14610929578063d85ba06314610949578063dd62ed3e1461095f57600080fd5b8063c0246668146108b9578063c18bc195146108d9578063c876d0b9146108f957600080fd5b80639fccce3211610164578063a457c2d71161013e578063a457c2d71461082a578063a9059cbb1461084a578063b62496f51461086a578063bbc0c7421461089a57600080fd5b80639fccce32146107e8578063a0d82dc5146107fe578063a1dc92bc1461081457600080fd5b8063924de9b7116101a0578063924de9b71461077d57806395d89b411461079d5780639a7a23d6146107b25780639c3b4fdc146107d257600080fd5b80638da5cb5b146107295780638ea5220f14610747578063921369131461076757600080fd5b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146106be5780637b208769146106de5780637bce5a04146106fe5780638a8c523c1461071457600080fd5b8063715018a614610674578063751039fc146106895780637571336a1461069e57600080fd5b80634fbee1931161027a5780634fbee193146105cf5780636a486a8e146106085780636ddd17131461061e57806370a082311461063e57600080fd5b806344249f041461056b57806349bd5a5e146105815780634a62bb65146105b557600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104f95780632e6ed7ef1461050f578063313ce5671461052f578063395093511461054b57600080fd5b80631f3fed8f146104a1578063203e727e146104b757806323b872dd146104d957600080fd5b806310d5de531161034957806310d5de53146103fa5780631694505e1461042a57806318160ddd146104765780631a8145bb1461048b57600080fd5b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a52565b60405161039d919061262d565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612697565b610ae4565b604051901515815260200161039d565b3480156103e257600080fd5b506103ec60155481565b60405190815260200161039d565b34801561040657600080fd5b506103c66104153660046126c3565b601e6020526000908152604090205460ff1681565b34801561043657600080fd5b5061045e7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161039d565b34801561048257600080fd5b506002546103ec565b34801561049757600080fd5b506103ec601b5481565b3480156104ad57600080fd5b506103ec601a5481565b3480156104c357600080fd5b506104d76104d23660046126e0565b610afa565b005b3480156104e557600080fd5b506103c66104f43660046126f9565b610be0565b34801561050557600080fd5b5061045e61dead81565b34801561051b57600080fd5b506104d761052a36600461273a565b610c8a565b34801561053b57600080fd5b506040516012815260200161039d565b34801561055757600080fd5b506103c6610566366004612697565b610d51565b34801561057757600080fd5b506103ec60195481565b34801561058d57600080fd5b5061045e7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105c157600080fd5b50600c546103c69060ff1681565b3480156105db57600080fd5b506103c66105ea3660046126c3565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561061457600080fd5b506103ec60145481565b34801561062a57600080fd5b50600c546103c69062010000900460ff1681565b34801561064a57600080fd5b506103ec6106593660046126c3565b6001600160a01b031660009081526020819052604090205490565b34801561068057600080fd5b506104d7610d8d565b34801561069557600080fd5b506103c6610dc3565b3480156106aa57600080fd5b506104d76106b936600461277c565b610e00565b3480156106ca57600080fd5b5060075461045e906001600160a01b031681565b3480156106ea57600080fd5b5060065461045e906001600160a01b031681565b34801561070a57600080fd5b506103ec60115481565b34801561072057600080fd5b506104d7610e55565b34801561073557600080fd5b506005546001600160a01b031661045e565b34801561075357600080fd5b5060085461045e906001600160a01b031681565b34801561077357600080fd5b506103ec60165481565b34801561078957600080fd5b506104d76107983660046127b1565b610e92565b3480156107a957600080fd5b50610390610ed8565b3480156107be57600080fd5b506104d76107cd36600461277c565b610ee7565b3480156107de57600080fd5b506103ec60135481565b3480156107f457600080fd5b506103ec601c5481565b34801561080a57600080fd5b506103ec60185481565b34801561082057600080fd5b506103ec60105481565b34801561083657600080fd5b506103c6610845366004612697565b610fc7565b34801561085657600080fd5b506103c6610865366004612697565b611060565b34801561087657600080fd5b506103c66108853660046126c3565b601f6020526000908152604090205460ff1681565b3480156108a657600080fd5b50600c546103c690610100900460ff1681565b3480156108c557600080fd5b506104d76108d436600461277c565b61106d565b3480156108e557600080fd5b506104d76108f43660046126e0565b6110f6565b34801561090557600080fd5b50600e546103c69060ff1681565b34801561091f57600080fd5b506103ec60095481565b34801561093557600080fd5b506103c66109443660046126e0565b6111c7565b34801561095557600080fd5b506103ec600f5481565b34801561096b57600080fd5b506103ec61097a3660046127cc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b157600080fd5b506103ec600a5481565b3480156109c757600080fd5b506104d76109d636600461273a565b61131e565b3480156109e757600080fd5b506103c66113e7565b3480156109fc57600080fd5b506103ec60125481565b348015610a1257600080fd5b506104d7610a213660046126c3565b611424565b348015610a3257600080fd5b506103ec60175481565b348015610a4857600080fd5b506103ec600b5481565b606060038054610a6190612805565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90612805565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610af13384846114bf565b50600192915050565b6005546001600160a01b03163314610b2d5760405162461bcd60e51b8152600401610b2490612840565b60405180910390fd5b670de0b6b3a76400006103e8610b4260025490565b610b4d90600161288b565b610b5791906128aa565b610b6191906128aa565b811015610bc85760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610b24565b610bda81670de0b6b3a764000061288b565b60095550565b6000610bed8484846115e3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c725760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b24565b610c7f85338584036114bf565b506001949350505050565b6005546001600160a01b03163314610cb45760405162461bcd60e51b8152600401610b2490612840565b60088183610cc286886128cc565b610ccc91906128cc565b610cd691906128cc565b1115610d145760405162461bcd60e51b815260206004820152600d60248201526c4d61782042757946656520382560981b6044820152606401610b24565b60108490556011839055601282905560138190558082610d3485876128cc565b610d3e91906128cc565b610d4891906128cc565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610af1918590610d889086906128cc565b6114bf565b6005546001600160a01b03163314610db75760405162461bcd60e51b8152600401610b2490612840565b610dc16000611e97565b565b6005546000906001600160a01b03163314610df05760405162461bcd60e51b8152600401610b2490612840565b50600c805460ff19169055600190565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b8152600401610b2490612840565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e7f5760405162461bcd60e51b8152600401610b2490612840565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610ebc5760405162461bcd60e51b8152600401610b2490612840565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a6190612805565b6005546001600160a01b03163314610f115760405162461bcd60e51b8152600401610b2490612840565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610fb95760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b24565b610fc38282611ee9565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110495760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b24565b61105633858584036114bf565b5060019392505050565b6000610af13384846115e3565b6005546001600160a01b031633146110975760405162461bcd60e51b8152600401610b2490612840565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111205760405162461bcd60e51b8152600401610b2490612840565b670de0b6b3a76400006103e861113560025490565b61114090600561288b565b61114a91906128aa565b61115491906128aa565b8110156111af5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b24565b6111c181670de0b6b3a764000061288b565b600b5550565b6005546000906001600160a01b031633146111f45760405162461bcd60e51b8152600401610b2490612840565b620186a061120160025490565b61120c90600161288b565b61121691906128aa565b8210156112835760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b24565b6103e861128f60025490565b61129a90600561288b565b6112a491906128aa565b8211156113105760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b24565b50600a81905560015b919050565b6005546001600160a01b031633146113485760405162461bcd60e51b8152600401610b2490612840565b600a818361135686886128cc565b61136091906128cc565b61136a91906128cc565b11156113aa5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610b24565b601584905560168390556017829055601881905580826113ca85876128cc565b6113d491906128cc565b6113de91906128cc565b60145550505050565b6005546000906001600160a01b031633146114145760405162461bcd60e51b8152600401610b2490612840565b50600e805460ff19169055600190565b6005546001600160a01b0316331461144e5760405162461bcd60e51b8152600401610b2490612840565b6001600160a01b0381166114b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b24565b6114bc81611e97565b50565b6001600160a01b0383166115215760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b24565b6001600160a01b0382166115825760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b24565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116095760405162461bcd60e51b8152600401610b24906128e4565b6001600160a01b03821661162f5760405162461bcd60e51b8152600401610b2490612929565b806116455761164083836000611f3d565b505050565b600c5460ff1615611b02576005546001600160a01b0384811691161480159061167c57506005546001600160a01b03838116911614155b801561169057506001600160a01b03821615155b80156116a757506001600160a01b03821661dead14155b80156116bd5750600554600160a01b900460ff16155b15611b0257600c54610100900460ff16611755576001600160a01b0383166000908152601d602052604090205460ff168061171057506001600160a01b0382166000908152601d602052604090205460ff165b6117555760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b24565b600e5460ff161561189c576005546001600160a01b038381169116148015906117b057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117ee57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561189c57326000908152600d602052604090205443116118895760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b24565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff1680156118dd57506001600160a01b0382166000908152601e602052604090205460ff16155b156119c1576009548111156119525760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b24565b600b546001600160a01b03831660009081526020819052604090205461197890836128cc565b11156119bc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b24565b611b02565b6001600160a01b0382166000908152601f602052604090205460ff168015611a0257506001600160a01b0383166000908152601e602052604090205460ff16155b15611a78576009548111156119bc5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b24565b6001600160a01b0382166000908152601e602052604090205460ff16611b0257600b546001600160a01b038316600090815260208190526040902054611abe90836128cc565b1115611b025760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b24565b30600090815260208190526040902054600a5481108015908190611b2e5750600c5462010000900460ff165b8015611b445750600554600160a01b900460ff16155b8015611b6957506001600160a01b0385166000908152601f602052604090205460ff16155b8015611b8e57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611bb357506001600160a01b0384166000908152601d602052604090205460ff16155b15611be1576005805460ff60a01b1916600160a01b179055611bd3612092565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611c2f57506001600160a01b0385166000908152601d602052604090205460ff165b15611c38575060005b60008115611e83576001600160a01b0386166000908152601f602052604090205460ff168015611c6a57506000601454115b15611d5857611c8f6064611c896014548861235c90919063ffffffff16565b9061236f565b905060145460155482611ca2919061288b565b611cac91906128aa565b60196000828254611cbd91906128cc565b9091555050601454601754611cd2908361288b565b611cdc91906128aa565b601b6000828254611ced91906128cc565b9091555050601454601854611d02908361288b565b611d0c91906128aa565b601c6000828254611d1d91906128cc565b9091555050601454601654611d32908361288b565b611d3c91906128aa565b601a6000828254611d4d91906128cc565b90915550611e659050565b6001600160a01b0387166000908152601f602052604090205460ff168015611d8257506000600f54115b15611e6557611da16064611c89600f548861235c90919063ffffffff16565b9050600f5460105482611db4919061288b565b611dbe91906128aa565b60196000828254611dcf91906128cc565b9091555050600f54601254611de4908361288b565b611dee91906128aa565b601b6000828254611dff91906128cc565b9091555050600f54601354611e14908361288b565b611e1e91906128aa565b601c6000828254611e2f91906128cc565b9091555050600f54601154611e44908361288b565b611e4e91906128aa565b601a6000828254611e5f91906128cc565b90915550505b8015611e7657611e76873083611f3d565b611e80818661296c565b94505b611e8e878787611f3d565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f635760405162461bcd60e51b8152600401610b24906128e4565b6001600160a01b038216611f895760405162461bcd60e51b8152600401610b2490612929565b6001600160a01b038316600090815260208190526040902054818110156120015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b24565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120389084906128cc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161208491815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b546019546120bc91906128cc565b6120c691906128cc565b6120d091906128cc565b905060008215806120df575081155b156120e957505050565b600a546120f790601461288b565b83111561210f57600a5461210c90601461288b565b92505b6000600283601b5486612122919061288b565b61212c91906128aa565b61213691906128aa565b90506000612144858361237b565b90504761215082612387565b600061215c478361237b565b9050600061217987611c896019548561235c90919063ffffffff16565b9050600061219688611c89601a548661235c90919063ffffffff16565b905060006121b389611c89601c548761235c90919063ffffffff16565b9050600081836121c3868861296c565b6121cd919061296c565b6121d7919061296c565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d8060008114612239576040519150601f19603f3d011682016040523d82523d6000602084013e61223e565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d806000811461228e576040519150601f19603f3d011682016040523d82523d6000602084013e612293565b606091505b509099505087158015906122a75750600081115b156122fa576122b68882612547565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612347576040519150601f19603f3d011682016040523d82523d6000602084013e61234c565b606091505b5050505050505050505050505050565b6000612368828461288b565b9392505050565b600061236882846128aa565b6000612368828461296c565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bc576123bc612983565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561243a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245e9190612999565b8160018151811061247157612471612983565b60200260200101906001600160a01b031690816001600160a01b0316815250506124bc307f0000000000000000000000000000000000000000000000000000000000000000846114bf565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906125119085906000908690309042906004016129b6565b600060405180830381600087803b15801561252b57600080fd5b505af115801561253f573d6000803e3d6000fd5b505050505050565b612572307f0000000000000000000000000000000000000000000000000000000000000000846114bf565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015612601573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126269190612a27565b5050505050565b600060208083528351808285015260005b8181101561265a5785810183015185820160400152820161263e565b8181111561266c576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146114bc57600080fd5b600080604083850312156126aa57600080fd5b82356126b581612682565b946020939093013593505050565b6000602082840312156126d557600080fd5b813561236881612682565b6000602082840312156126f257600080fd5b5035919050565b60008060006060848603121561270e57600080fd5b833561271981612682565b9250602084013561272981612682565b929592945050506040919091013590565b6000806000806080858703121561275057600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461131957600080fd5b6000806040838503121561278f57600080fd5b823561279a81612682565b91506127a86020840161276c565b90509250929050565b6000602082840312156127c357600080fd5b6123688261276c565b600080604083850312156127df57600080fd5b82356127ea81612682565b915060208301356127fa81612682565b809150509250929050565b600181811c9082168061281957607f821691505b6020821081141561283a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156128a5576128a5612875565b500290565b6000826128c757634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156128df576128df612875565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561297e5761297e612875565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156129ab57600080fd5b815161236881612682565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612a065784516001600160a01b0316835293830193918301916001016129e1565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a3c57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220807b762261292c03f99316f6b8e0845517772a1198f8a3affaeb3e94a96001f364736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d3146109f0578063f2fde38b14610a06578063f637434214610a26578063f8b45b0514610a3c57600080fd5b8063e2f45605146109a5578063e7ad9fcd146109bb578063e884f260146109db57600080fd5b8063c8c8ebe4116100d1578063c8c8ebe414610913578063d257b34f14610929578063d85ba06314610949578063dd62ed3e1461095f57600080fd5b8063c0246668146108b9578063c18bc195146108d9578063c876d0b9146108f957600080fd5b80639fccce3211610164578063a457c2d71161013e578063a457c2d71461082a578063a9059cbb1461084a578063b62496f51461086a578063bbc0c7421461089a57600080fd5b80639fccce32146107e8578063a0d82dc5146107fe578063a1dc92bc1461081457600080fd5b8063924de9b7116101a0578063924de9b71461077d57806395d89b411461079d5780639a7a23d6146107b25780639c3b4fdc146107d257600080fd5b80638da5cb5b146107295780638ea5220f14610747578063921369131461076757600080fd5b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146106be5780637b208769146106de5780637bce5a04146106fe5780638a8c523c1461071457600080fd5b8063715018a614610674578063751039fc146106895780637571336a1461069e57600080fd5b80634fbee1931161027a5780634fbee193146105cf5780636a486a8e146106085780636ddd17131461061e57806370a082311461063e57600080fd5b806344249f041461056b57806349bd5a5e146105815780634a62bb65146105b557600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104f95780632e6ed7ef1461050f578063313ce5671461052f578063395093511461054b57600080fd5b80631f3fed8f146104a1578063203e727e146104b757806323b872dd146104d957600080fd5b806310d5de531161034957806310d5de53146103fa5780631694505e1461042a57806318160ddd146104765780631a8145bb1461048b57600080fd5b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103d657600080fd5b3661037657005b600080fd5b34801561038757600080fd5b50610390610a52565b60405161039d919061262d565b60405180910390f35b3480156103b257600080fd5b506103c66103c1366004612697565b610ae4565b604051901515815260200161039d565b3480156103e257600080fd5b506103ec60155481565b60405190815260200161039d565b34801561040657600080fd5b506103c66104153660046126c3565b601e6020526000908152604090205460ff1681565b34801561043657600080fd5b5061045e7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161039d565b34801561048257600080fd5b506002546103ec565b34801561049757600080fd5b506103ec601b5481565b3480156104ad57600080fd5b506103ec601a5481565b3480156104c357600080fd5b506104d76104d23660046126e0565b610afa565b005b3480156104e557600080fd5b506103c66104f43660046126f9565b610be0565b34801561050557600080fd5b5061045e61dead81565b34801561051b57600080fd5b506104d761052a36600461273a565b610c8a565b34801561053b57600080fd5b506040516012815260200161039d565b34801561055757600080fd5b506103c6610566366004612697565b610d51565b34801561057757600080fd5b506103ec60195481565b34801561058d57600080fd5b5061045e7f0000000000000000000000008776d4e2db17e4e2eafcdbf833fa89f04c909b4181565b3480156105c157600080fd5b50600c546103c69060ff1681565b3480156105db57600080fd5b506103c66105ea3660046126c3565b6001600160a01b03166000908152601d602052604090205460ff1690565b34801561061457600080fd5b506103ec60145481565b34801561062a57600080fd5b50600c546103c69062010000900460ff1681565b34801561064a57600080fd5b506103ec6106593660046126c3565b6001600160a01b031660009081526020819052604090205490565b34801561068057600080fd5b506104d7610d8d565b34801561069557600080fd5b506103c6610dc3565b3480156106aa57600080fd5b506104d76106b936600461277c565b610e00565b3480156106ca57600080fd5b5060075461045e906001600160a01b031681565b3480156106ea57600080fd5b5060065461045e906001600160a01b031681565b34801561070a57600080fd5b506103ec60115481565b34801561072057600080fd5b506104d7610e55565b34801561073557600080fd5b506005546001600160a01b031661045e565b34801561075357600080fd5b5060085461045e906001600160a01b031681565b34801561077357600080fd5b506103ec60165481565b34801561078957600080fd5b506104d76107983660046127b1565b610e92565b3480156107a957600080fd5b50610390610ed8565b3480156107be57600080fd5b506104d76107cd36600461277c565b610ee7565b3480156107de57600080fd5b506103ec60135481565b3480156107f457600080fd5b506103ec601c5481565b34801561080a57600080fd5b506103ec60185481565b34801561082057600080fd5b506103ec60105481565b34801561083657600080fd5b506103c6610845366004612697565b610fc7565b34801561085657600080fd5b506103c6610865366004612697565b611060565b34801561087657600080fd5b506103c66108853660046126c3565b601f6020526000908152604090205460ff1681565b3480156108a657600080fd5b50600c546103c690610100900460ff1681565b3480156108c557600080fd5b506104d76108d436600461277c565b61106d565b3480156108e557600080fd5b506104d76108f43660046126e0565b6110f6565b34801561090557600080fd5b50600e546103c69060ff1681565b34801561091f57600080fd5b506103ec60095481565b34801561093557600080fd5b506103c66109443660046126e0565b6111c7565b34801561095557600080fd5b506103ec600f5481565b34801561096b57600080fd5b506103ec61097a3660046127cc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109b157600080fd5b506103ec600a5481565b3480156109c757600080fd5b506104d76109d636600461273a565b61131e565b3480156109e757600080fd5b506103c66113e7565b3480156109fc57600080fd5b506103ec60125481565b348015610a1257600080fd5b506104d7610a213660046126c3565b611424565b348015610a3257600080fd5b506103ec60175481565b348015610a4857600080fd5b506103ec600b5481565b606060038054610a6190612805565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90612805565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610af13384846114bf565b50600192915050565b6005546001600160a01b03163314610b2d5760405162461bcd60e51b8152600401610b2490612840565b60405180910390fd5b670de0b6b3a76400006103e8610b4260025490565b610b4d90600161288b565b610b5791906128aa565b610b6191906128aa565b811015610bc85760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610b24565b610bda81670de0b6b3a764000061288b565b60095550565b6000610bed8484846115e3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c725760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610b24565b610c7f85338584036114bf565b506001949350505050565b6005546001600160a01b03163314610cb45760405162461bcd60e51b8152600401610b2490612840565b60088183610cc286886128cc565b610ccc91906128cc565b610cd691906128cc565b1115610d145760405162461bcd60e51b815260206004820152600d60248201526c4d61782042757946656520382560981b6044820152606401610b24565b60108490556011839055601282905560138190558082610d3485876128cc565b610d3e91906128cc565b610d4891906128cc565b600f5550505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610af1918590610d889086906128cc565b6114bf565b6005546001600160a01b03163314610db75760405162461bcd60e51b8152600401610b2490612840565b610dc16000611e97565b565b6005546000906001600160a01b03163314610df05760405162461bcd60e51b8152600401610b2490612840565b50600c805460ff19169055600190565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b8152600401610b2490612840565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e7f5760405162461bcd60e51b8152600401610b2490612840565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610ebc5760405162461bcd60e51b8152600401610b2490612840565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a6190612805565b6005546001600160a01b03163314610f115760405162461bcd60e51b8152600401610b2490612840565b7f0000000000000000000000008776d4e2db17e4e2eafcdbf833fa89f04c909b416001600160a01b0316826001600160a01b03161415610fb95760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b24565b610fc38282611ee9565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110495760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610b24565b61105633858584036114bf565b5060019392505050565b6000610af13384846115e3565b6005546001600160a01b031633146110975760405162461bcd60e51b8152600401610b2490612840565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111205760405162461bcd60e51b8152600401610b2490612840565b670de0b6b3a76400006103e861113560025490565b61114090600561288b565b61114a91906128aa565b61115491906128aa565b8110156111af5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610b24565b6111c181670de0b6b3a764000061288b565b600b5550565b6005546000906001600160a01b031633146111f45760405162461bcd60e51b8152600401610b2490612840565b620186a061120160025490565b61120c90600161288b565b61121691906128aa565b8210156112835760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610b24565b6103e861128f60025490565b61129a90600561288b565b6112a491906128aa565b8211156113105760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610b24565b50600a81905560015b919050565b6005546001600160a01b031633146113485760405162461bcd60e51b8152600401610b2490612840565b600a818361135686886128cc565b61136091906128cc565b61136a91906128cc565b11156113aa5760405162461bcd60e51b815260206004820152600f60248201526e4d61782053656c6c4665652031302560881b6044820152606401610b24565b601584905560168390556017829055601881905580826113ca85876128cc565b6113d491906128cc565b6113de91906128cc565b60145550505050565b6005546000906001600160a01b031633146114145760405162461bcd60e51b8152600401610b2490612840565b50600e805460ff19169055600190565b6005546001600160a01b0316331461144e5760405162461bcd60e51b8152600401610b2490612840565b6001600160a01b0381166114b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b24565b6114bc81611e97565b50565b6001600160a01b0383166115215760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b24565b6001600160a01b0382166115825760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b24565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116095760405162461bcd60e51b8152600401610b24906128e4565b6001600160a01b03821661162f5760405162461bcd60e51b8152600401610b2490612929565b806116455761164083836000611f3d565b505050565b600c5460ff1615611b02576005546001600160a01b0384811691161480159061167c57506005546001600160a01b03838116911614155b801561169057506001600160a01b03821615155b80156116a757506001600160a01b03821661dead14155b80156116bd5750600554600160a01b900460ff16155b15611b0257600c54610100900460ff16611755576001600160a01b0383166000908152601d602052604090205460ff168061171057506001600160a01b0382166000908152601d602052604090205460ff165b6117555760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b24565b600e5460ff161561189c576005546001600160a01b038381169116148015906117b057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117ee57507f0000000000000000000000008776d4e2db17e4e2eafcdbf833fa89f04c909b416001600160a01b0316826001600160a01b031614155b1561189c57326000908152600d602052604090205443116118895760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610b24565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff1680156118dd57506001600160a01b0382166000908152601e602052604090205460ff16155b156119c1576009548111156119525760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610b24565b600b546001600160a01b03831660009081526020819052604090205461197890836128cc565b11156119bc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b24565b611b02565b6001600160a01b0382166000908152601f602052604090205460ff168015611a0257506001600160a01b0383166000908152601e602052604090205460ff16155b15611a78576009548111156119bc5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610b24565b6001600160a01b0382166000908152601e602052604090205460ff16611b0257600b546001600160a01b038316600090815260208190526040902054611abe90836128cc565b1115611b025760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b24565b30600090815260208190526040902054600a5481108015908190611b2e5750600c5462010000900460ff165b8015611b445750600554600160a01b900460ff16155b8015611b6957506001600160a01b0385166000908152601f602052604090205460ff16155b8015611b8e57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611bb357506001600160a01b0384166000908152601d602052604090205460ff16155b15611be1576005805460ff60a01b1916600160a01b179055611bd3612092565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601d602052604090205460ff600160a01b909204821615911680611c2f57506001600160a01b0385166000908152601d602052604090205460ff165b15611c38575060005b60008115611e83576001600160a01b0386166000908152601f602052604090205460ff168015611c6a57506000601454115b15611d5857611c8f6064611c896014548861235c90919063ffffffff16565b9061236f565b905060145460155482611ca2919061288b565b611cac91906128aa565b60196000828254611cbd91906128cc565b9091555050601454601754611cd2908361288b565b611cdc91906128aa565b601b6000828254611ced91906128cc565b9091555050601454601854611d02908361288b565b611d0c91906128aa565b601c6000828254611d1d91906128cc565b9091555050601454601654611d32908361288b565b611d3c91906128aa565b601a6000828254611d4d91906128cc565b90915550611e659050565b6001600160a01b0387166000908152601f602052604090205460ff168015611d8257506000600f54115b15611e6557611da16064611c89600f548861235c90919063ffffffff16565b9050600f5460105482611db4919061288b565b611dbe91906128aa565b60196000828254611dcf91906128cc565b9091555050600f54601254611de4908361288b565b611dee91906128aa565b601b6000828254611dff91906128cc565b9091555050600f54601354611e14908361288b565b611e1e91906128aa565b601c6000828254611e2f91906128cc565b9091555050600f54601154611e44908361288b565b611e4e91906128aa565b601a6000828254611e5f91906128cc565b90915550505b8015611e7657611e76873083611f3d565b611e80818661296c565b94505b611e8e878787611f3d565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601f6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f635760405162461bcd60e51b8152600401610b24906128e4565b6001600160a01b038216611f895760405162461bcd60e51b8152600401610b2490612929565b6001600160a01b038316600090815260208190526040902054818110156120015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610b24565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906120389084906128cc565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161208491815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000601c54601a54601b546019546120bc91906128cc565b6120c691906128cc565b6120d091906128cc565b905060008215806120df575081155b156120e957505050565b600a546120f790601461288b565b83111561210f57600a5461210c90601461288b565b92505b6000600283601b5486612122919061288b565b61212c91906128aa565b61213691906128aa565b90506000612144858361237b565b90504761215082612387565b600061215c478361237b565b9050600061217987611c896019548561235c90919063ffffffff16565b9050600061219688611c89601a548661235c90919063ffffffff16565b905060006121b389611c89601c548761235c90919063ffffffff16565b9050600081836121c3868861296c565b6121cd919061296c565b6121d7919061296c565b6000601b8190556019819055601a819055601c8190556008546040519293506001600160a01b031691849181818185875af1925050503d8060008114612239576040519150601f19603f3d011682016040523d82523d6000602084013e61223e565b606091505b5050600754604051919a506001600160a01b0316908490600081818185875af1925050503d806000811461228e576040519150601f19603f3d011682016040523d82523d6000602084013e612293565b606091505b509099505087158015906122a75750600081115b156122fa576122b68882612547565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612347576040519150601f19603f3d011682016040523d82523d6000602084013e61234c565b606091505b5050505050505050505050505050565b6000612368828461288b565b9392505050565b600061236882846128aa565b6000612368828461296c565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123bc576123bc612983565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561243a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245e9190612999565b8160018151811061247157612471612983565b60200260200101906001600160a01b031690816001600160a01b0316815250506124bc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114bf565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906125119085906000908690309042906004016129b6565b600060405180830381600087803b15801561252b57600080fd5b505af115801561253f573d6000803e3d6000fd5b505050505050565b612572307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114bf565b60085460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015612601573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126269190612a27565b5050505050565b600060208083528351808285015260005b8181101561265a5785810183015185820160400152820161263e565b8181111561266c576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146114bc57600080fd5b600080604083850312156126aa57600080fd5b82356126b581612682565b946020939093013593505050565b6000602082840312156126d557600080fd5b813561236881612682565b6000602082840312156126f257600080fd5b5035919050565b60008060006060848603121561270e57600080fd5b833561271981612682565b9250602084013561272981612682565b929592945050506040919091013590565b6000806000806080858703121561275057600080fd5b5050823594602084013594506040840135936060013592509050565b8035801515811461131957600080fd5b6000806040838503121561278f57600080fd5b823561279a81612682565b91506127a86020840161276c565b90509250929050565b6000602082840312156127c357600080fd5b6123688261276c565b600080604083850312156127df57600080fd5b82356127ea81612682565b915060208301356127fa81612682565b809150509250929050565b600181811c9082168061281957607f821691505b6020821081141561283a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156128a5576128a5612875565b500290565b6000826128c757634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156128df576128df612875565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561297e5761297e612875565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156129ab57600080fd5b815161236881612682565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612a065784516001600160a01b0316835293830193918301916001016129e1565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612a3c57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220807b762261292c03f99316f6b8e0845517772a1198f8a3affaeb3e94a96001f364736f6c634300080a0033

Deployed Bytecode Sourcemap

32992:16505:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9920:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12087:169;;;;;;;;;;-1:-1:-1;12087:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;12087:169:0;1072:187:1;34035:29:0;;;;;;;;;;;;;;;;;;;1410:25:1;;;1398:2;1383:18;34035:29:0;1264:177:1;34472:63:0;;;;;;;;;;-1:-1:-1;34472:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33072:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1889:32:1;;;1871:51;;1859:2;1844:18;33072:51:0;1698:230:1;11040:108:0;;;;;;;;;;-1:-1:-1;11128:12:0;;11040:108;;34256:33;;;;;;;;;;;;;;;;34216;;;;;;;;;;;;;;;;38864:275;;;;;;;;;;-1:-1:-1;38864:275:0;;;;;:::i;:::-;;:::i;:::-;;12738:492;;;;;;;;;;-1:-1:-1;12738:492:0;;;;;:::i;:::-;;:::i;33175:53::-;;;;;;;;;;;;33221:6;33175:53;;39783:496;;;;;;;;;;-1:-1:-1;39783:496:0;;;;;:::i;:::-;;:::i;10882:93::-;;;;;;;;;;-1:-1:-1;10882:93:0;;10965:2;3319:36:1;;3307:2;3292:18;10882:93:0;3177:184:1;13639:215:0;;;;;;;;;;-1:-1:-1;13639:215:0;;;;;:::i;:::-;;:::i;34178:31::-;;;;;;;;;;;;;;;;33130:38;;;;;;;;;;;;;;;33484:33;;;;;;;;;;-1:-1:-1;33484:33:0;;;;;;;;41501:126;;;;;;;;;;-1:-1:-1;41501:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;41591:28:0;41567:4;41591:28;;;:19;:28;;;;;;;;;41501:126;34003:28;;;;;;;;;;;;;;;;33564:31;;;;;;;;;;-1:-1:-1;33564:31:0;;;;;;;;;;;11211:127;;;;;;;;;;-1:-1:-1;11211:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11312:18:0;11285:7;11312:18;;;;;;;;;;;;11211:127;3155:103;;;;;;;;;;;;;:::i;37972:121::-;;;;;;;;;;;;;:::i;39412:167::-;;;;;;;;;;-1:-1:-1;39412:167:0;;;;;:::i;:::-;;:::i;33299:30::-;;;;;;;;;;-1:-1:-1;33299:30:0;;;;-1:-1:-1;;;;;33299:30:0;;;33264:28;;;;;;;;;;-1:-1:-1;33264:28:0;;;;-1:-1:-1;;;;;33264:28:0;;;33896:30;;;;;;;;;;;;;;;;37808:112;;;;;;;;;;;;;:::i;2504:87::-;;;;;;;;;;-1:-1:-1;2577:6:0;;-1:-1:-1;;;;;2577:6:0;2504:87;;33336:24;;;;;;;;;;-1:-1:-1;33336:24:0;;;;-1:-1:-1;;;;;33336:24:0;;;34071:31;;;;;;;;;;;;;;;;39675:100;;;;;;;;;;-1:-1:-1;39675:100:0;;;;;:::i;:::-;;:::i;10139:104::-;;;;;;;;;;;;;:::i;40993:304::-;;;;;;;;;;-1:-1:-1;40993:304:0;;;;;:::i;:::-;;:::i;33970:24::-;;;;;;;;;;;;;;;;34296:27;;;;;;;;;;;;;;;;34147:25;;;;;;;;;;;;;;;;33861:28;;;;;;;;;;;;;;;;14357:413;;;;;;;;;;-1:-1:-1;14357:413:0;;;;;:::i;:::-;;:::i;11551:175::-;;;;;;;;;;-1:-1:-1;11551:175:0;;;;;:::i;:::-;;:::i;34693:57::-;;;;;;;;;;-1:-1:-1;34693:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33524:33;;;;;;;;;;-1:-1:-1;33524:33:0;;;;;;;;;;;40803:182;;;;;;;;;;-1:-1:-1;40803:182:0;;;;;:::i;:::-;;:::i;39147:256::-;;;;;;;;;;-1:-1:-1;39147:256:0;;;;;:::i;:::-;;:::i;33782:39::-;;;;;;;;;;-1:-1:-1;33782:39:0;;;;;;;;33369:35;;;;;;;;;;;;;;;;38359:497;;;;;;;;;;-1:-1:-1;38359:497:0;;;;;:::i;:::-;;:::i;33830:27::-;;;;;;;;;;;;;;;;11789:151;;;;;;;;;;-1:-1:-1;11789:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11905:18:0;;;11878:7;11905:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11789:151;33411:33;;;;;;;;;;;;;;;;40287:508;;;;;;;;;;-1:-1:-1;40287:508:0;;;;;:::i;:::-;;:::i;38154:135::-;;;;;;;;;;;;;:::i;33933:30::-;;;;;;;;;;;;;;;;3413:201;;;;;;;;;;-1:-1:-1;3413:201:0;;;;;:::i;:::-;;:::i;34109:31::-;;;;;;;;;;;;;;;;33451:24;;;;;;;;;;;;;;;;9920:100;9974:13;10007:5;10000:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9920:100;:::o;12087:169::-;12170:4;12187:39;1257:10;12210:7;12219:6;12187:8;:39::i;:::-;-1:-1:-1;12244:4:0;12087:169;;;;:::o;38864:275::-;2577:6;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;;;;;;;;;39001:4:::1;38993;38972:13;11128:12:::0;;;11040:108;38972:13:::1;:17;::::0;38988:1:::1;38972:17;:::i;:::-;38971:26;;;;:::i;:::-;38970:35;;;;:::i;:::-;38960:6;:45;;38938:142;;;::::0;-1:-1:-1;;;38938:142:0;;5904:2:1;38938:142:0::1;::::0;::::1;5886:21:1::0;5943:2;5923:18;;;5916:30;5982:34;5962:18;;;5955:62;-1:-1:-1;;;6033:18:1;;;6026:45;6088:19;;38938:142:0::1;5702:411:1::0;38938:142:0::1;39114:17;:6:::0;39124::::1;39114:17;:::i;:::-;39091:20;:40:::0;-1:-1:-1;38864:275:0:o;12738:492::-;12878:4;12895:36;12905:6;12913:9;12924:6;12895:9;:36::i;:::-;-1:-1:-1;;;;;12971:19:0;;12944:24;12971:19;;;:11;:19;;;;;;;;1257:10;12971:33;;;;;;;;13023:26;;;;13015:79;;;;-1:-1:-1;;;13015:79:0;;6320:2:1;13015:79:0;;;6302:21:1;6359:2;6339:18;;;6332:30;6398:34;6378:18;;;6371:62;-1:-1:-1;;;6449:18:1;;;6442:38;6497:19;;13015:79:0;6118:404:1;13015:79:0;13130:57;13139:6;1257:10;13180:6;13161:16;:25;13130:8;:57::i;:::-;-1:-1:-1;13218:4:0;;12738:492;-1:-1:-1;;;;12738:492:0:o;39783:496::-;2577:6;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;40018:1:::1;40006:7:::0;39990:13;39960:27:::1;39974:13:::0;39960:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39959:60;;39951:86;;;::::0;-1:-1:-1;;;39951:86:0;;6862:2:1;39951:86:0::1;::::0;::::1;6844:21:1::0;6901:2;6881:18;;;6874:30;-1:-1:-1;;;6920:18:1;;;6913:43;6973:18;;39951:86:0::1;6660:337:1::0;39951:86:0::1;40042:13;:27:::0;;;40080:15:::1;:31:::0;;;40122:15:::1;:31:::0;;;40164:9:::1;:19:::0;;;40176:7;40140:13;40209:31:::1;40098:13:::0;40058:11;40209:31:::1;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;40194:12;:76:::0;-1:-1:-1;;;;39783:496:0:o;13639:215::-;1257:10;13727:4;13776:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13776:34:0;;;;;;;;;;13727:4;;13744:80;;13767:7;;13776:47;;13813:10;;13776:47;:::i;:::-;13744:8;:80::i;3155:103::-;2577:6;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;3220:30:::1;3247:1;3220:18;:30::i;:::-;3155:103::o:0;37972:121::-;2577:6;;38024:4;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;-1:-1:-1;38041:14:0::1;:22:::0;;-1:-1:-1;;38041:22:0::1;::::0;;;37972:121;:::o;39412:167::-;2577:6;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39525:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;39525:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39412:167::o;37808:112::-;2577:6;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;37863:13:::1;:20:::0;;-1:-1:-1;;37894:18:0;;;;;37808:112::o;39675:100::-;2577:6;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;39746:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;39746:21:0;;::::1;::::0;;;::::1;::::0;;39675:100::o;10139:104::-;10195:13;10228:7;10221:14;;;;;:::i;40993:304::-;2577:6;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;41137:13:::1;-1:-1:-1::0;;;;;41129:21:0::1;:4;-1:-1:-1::0;;;;;41129:21:0::1;;;41107:128;;;::::0;-1:-1:-1;;;41107:128:0;;7204:2:1;41107:128:0::1;::::0;::::1;7186:21:1::0;7243:2;7223:18;;;7216:30;7282:34;7262:18;;;7255:62;7353:27;7333:18;;;7326:55;7398:19;;41107:128:0::1;7002:421:1::0;41107:128:0::1;41248:41;41277:4;41283:5;41248:28;:41::i;:::-;40993:304:::0;;:::o;14357:413::-;1257:10;14450:4;14494:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14494:34:0;;;;;;;;;;14547:35;;;;14539:85;;;;-1:-1:-1;;;14539:85:0;;7630:2:1;14539:85:0;;;7612:21:1;7669:2;7649:18;;;7642:30;7708:34;7688:18;;;7681:62;-1:-1:-1;;;7759:18:1;;;7752:35;7804:19;;14539:85:0;7428:401:1;14539:85:0;14660:67;1257:10;14683:7;14711:15;14692:16;:34;14660:8;:67::i;:::-;-1:-1:-1;14758:4:0;;14357:413;-1:-1:-1;;;14357:413:0:o;11551:175::-;11637:4;11654:42;1257:10;11678:9;11689:6;11654:9;:42::i;40803:182::-;2577:6;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40888:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;40888:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40943:34;;1212:41:1;;;40943:34:0::1;::::0;1185:18:1;40943:34:0::1;;;;;;;40803:182:::0;;:::o;39147:256::-;2577:6;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;39287:4:::1;39279;39258:13;11128:12:::0;;;11040:108;39258:13:::1;:17;::::0;39274:1:::1;39258:17;:::i;:::-;39257:26;;;;:::i;:::-;39256:35;;;;:::i;:::-;39246:6;:45;;39224:131;;;::::0;-1:-1:-1;;;39224:131:0;;8036:2:1;39224:131:0::1;::::0;::::1;8018:21:1::0;8075:2;8055:18;;;8048:30;8114:34;8094:18;;;8087:62;-1:-1:-1;;;8165:18:1;;;8158:34;8209:19;;39224:131:0::1;7834:400:1::0;39224:131:0::1;39378:17;:6:::0;39388::::1;39378:17;:::i;:::-;39366:9;:29:::0;-1:-1:-1;39147:256:0:o;38359:497::-;2577:6;;38467:4;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;38546:6:::1;38525:13;11128:12:::0;;;11040:108;38525:13:::1;:17;::::0;38541:1:::1;38525:17;:::i;:::-;38524:28;;;;:::i;:::-;38511:9;:41;;38489:144;;;::::0;-1:-1:-1;;;38489:144:0;;8441:2:1;38489:144:0::1;::::0;::::1;8423:21:1::0;8480:2;8460:18;;;8453:30;8519:34;8499:18;;;8492:62;-1:-1:-1;;;8570:18:1;;;8563:51;8631:19;;38489:144:0::1;8239:417:1::0;38489:144:0::1;38701:4;38680:13;11128:12:::0;;;11040:108;38680:13:::1;:17;::::0;38696:1:::1;38680:17;:::i;:::-;38679:26;;;;:::i;:::-;38666:9;:39;;38644:141;;;::::0;-1:-1:-1;;;38644:141:0;;8863:2:1;38644:141:0::1;::::0;::::1;8845:21:1::0;8902:2;8882:18;;;8875:30;8941:34;8921:18;;;8914:62;-1:-1:-1;;;8992:18:1;;;8985:50;9052:19;;38644:141:0::1;8661:416:1::0;38644:141:0::1;-1:-1:-1::0;38796:18:0::1;:30:::0;;;38844:4:::1;2795:1;38359:497:::0;;;:::o;40287:508::-;2577:6;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;40523:2:::1;40511:7:::0;40495:13;40465:27:::1;40479:13:::0;40465:11;:27:::1;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;40464:61;;40456:89;;;::::0;-1:-1:-1;;;40456:89:0;;9284:2:1;40456:89:0::1;::::0;::::1;9266:21:1::0;9323:2;9303:18;;;9296:30;-1:-1:-1;;;9342:18:1;;;9335:45;9397:18;;40456:89:0::1;9082:339:1::0;40456:89:0::1;40550:14;:28:::0;;;40589:16:::1;:32:::0;;;40632:16:::1;:32:::0;;;40675:10:::1;:20:::0;;;40688:7;40651:13;40722:33:::1;40608:13:::0;40567:11;40722:33:::1;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40706:13;:81:::0;-1:-1:-1;;;;40287:508:0:o;38154:135::-;2577:6;;38214:4;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;-1:-1:-1;38231:20:0::1;:28:::0;;-1:-1:-1;;38231:28:0::1;::::0;;;38154:135;:::o;3413:201::-;2577:6;;-1:-1:-1;;;;;2577:6:0;1257:10;2724:23;2716:68;;;;-1:-1:-1;;;2716:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3502:22:0;::::1;3494:73;;;::::0;-1:-1:-1;;;3494:73:0;;9628:2:1;3494:73:0::1;::::0;::::1;9610:21:1::0;9667:2;9647:18;;;9640:30;9706:34;9686:18;;;9679:62;-1:-1:-1;;;9757:18:1;;;9750:36;9803:19;;3494:73:0::1;9426:402:1::0;3494:73:0::1;3578:28;3597:8;3578:18;:28::i;:::-;3413:201:::0;:::o;18041:380::-;-1:-1:-1;;;;;18177:19:0;;18169:68;;;;-1:-1:-1;;;18169:68:0;;10035:2:1;18169:68:0;;;10017:21:1;10074:2;10054:18;;;10047:30;10113:34;10093:18;;;10086:62;-1:-1:-1;;;10164:18:1;;;10157:34;10208:19;;18169:68:0;9833:400:1;18169:68:0;-1:-1:-1;;;;;18256:21:0;;18248:68;;;;-1:-1:-1;;;18248:68:0;;10440:2:1;18248:68:0;;;10422:21:1;10479:2;10459:18;;;10452:30;10518:34;10498:18;;;10491:62;-1:-1:-1;;;10569:18:1;;;10562:32;10611:19;;18248:68:0;10238:398:1;18248:68:0;-1:-1:-1;;;;;18329:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18381:32;;1410:25:1;;;18381:32:0;;1383:18:1;18381:32:0;;;;;;;18041:380;;;:::o;41635:4847::-;-1:-1:-1;;;;;41767:18:0;;41759:68;;;;-1:-1:-1;;;41759:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41846:16:0;;41838:64;;;;-1:-1:-1;;;41838:64:0;;;;;;;:::i;:::-;41919:11;41915:93;;41947:28;41963:4;41969:2;41973:1;41947:15;:28::i;:::-;41635:4847;;;:::o;41915:93::-;42024:14;;;;42020:2487;;;2577:6;;-1:-1:-1;;;;;42077:15:0;;;2577:6;;42077:15;;;;:49;;-1:-1:-1;2577:6:0;;-1:-1:-1;;;;;42113:13:0;;;2577:6;;42113:13;;42077:49;:86;;;;-1:-1:-1;;;;;;42147:16:0;;;;42077:86;:128;;;;-1:-1:-1;;;;;;42184:21:0;;42198:6;42184:21;;42077:128;:158;;;;-1:-1:-1;42227:8:0;;-1:-1:-1;;;42227:8:0;;;;42226:9;42077:158;42055:2441;;;42275:13;;;;;;;42270:223;;-1:-1:-1;;;;;42347:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42376:23:0;;;;;;:19;:23;;;;;;;;42347:52;42313:160;;;;-1:-1:-1;;;42313:160:0;;11653:2:1;42313:160:0;;;11635:21:1;11692:2;11672:18;;;11665:30;-1:-1:-1;;;11711:18:1;;;11704:52;11773:18;;42313:160:0;11451:346:1;42313:160:0;42649:20;;;;42645:641;;;2577:6;;-1:-1:-1;;;;;42724:13:0;;;2577:6;;42724:13;;;;:72;;;42780:15;-1:-1:-1;;;;;42766:30:0;:2;-1:-1:-1;;;;;42766:30:0;;;42724:72;:129;;;;;42839:13;-1:-1:-1;;;;;42825:28:0;:2;-1:-1:-1;;;;;42825:28:0;;;42724:129;42694:573;;;42971:9;42942:39;;;;:28;:39;;;;;;43017:12;-1:-1:-1;42904:258:0;;;;-1:-1:-1;;;42904:258:0;;12004:2:1;42904:258:0;;;11986:21:1;12043:2;12023:18;;;12016:30;12082:34;12062:18;;;12055:62;12153:34;12133:18;;;12126:62;-1:-1:-1;;;12204:19:1;;;12197:40;12254:19;;42904:258:0;11802:477:1;42904:258:0;43218:9;43189:39;;;;:28;:39;;;;;43231:12;43189:54;;42694:573;-1:-1:-1;;;;;43360:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;43417:35:0;;;;;;:31;:35;;;;;;;;43416:36;43360:92;43334:1147;;;43539:20;;43529:6;:30;;43495:169;;;;-1:-1:-1;;;43495:169:0;;12486:2:1;43495:169:0;;;12468:21:1;12525:2;12505:18;;;12498:30;12564:34;12544:18;;;12537:62;-1:-1:-1;;;12615:18:1;;;12608:51;12676:19;;43495:169:0;12284:417:1;43495:169:0;43747:9;;-1:-1:-1;;;;;11312:18:0;;11285:7;11312:18;;;;;;;;;;;43721:22;;:6;:22;:::i;:::-;:35;;43687:140;;;;-1:-1:-1;;;43687:140:0;;12908:2:1;43687:140:0;;;12890:21:1;12947:2;12927:18;;;12920:30;-1:-1:-1;;;12966:18:1;;;12959:49;13025:18;;43687:140:0;12706:343:1;43687:140:0;43334:1147;;;-1:-1:-1;;;;;43925:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;43980:37:0;;;;;;:31;:37;;;;;;;;43979:38;43925:92;43899:582;;;44104:20;;44094:6;:30;;44060:170;;;;-1:-1:-1;;;44060:170:0;;13256:2:1;44060:170:0;;;13238:21:1;13295:2;13275:18;;;13268:30;13334:34;13314:18;;;13307:62;-1:-1:-1;;;13385:18:1;;;13378:52;13447:19;;44060:170:0;13054:418:1;43899:582:0;-1:-1:-1;;;;;44261:35:0;;;;;;:31;:35;;;;;;;;44256:225;;44381:9;;-1:-1:-1;;;;;11312:18:0;;11285:7;11312:18;;;;;;;;;;;44355:22;;:6;:22;:::i;:::-;:35;;44321:140;;;;-1:-1:-1;;;44321:140:0;;12908:2:1;44321:140:0;;;12890:21:1;12947:2;12927:18;;;12920:30;-1:-1:-1;;;12966:18:1;;;12959:49;13025:18;;44321:140:0;12706:343:1;44321:140:0;44568:4;44519:28;11312:18;;;;;;;;;;;44626;;44602:42;;;;;;;44675:35;;-1:-1:-1;44699:11:0;;;;;;;44675:35;:61;;;;-1:-1:-1;44728:8:0;;-1:-1:-1;;;44728:8:0;;;;44727:9;44675:61;:110;;;;-1:-1:-1;;;;;;44754:31:0;;;;;;:25;:31;;;;;;;;44753:32;44675:110;:153;;;;-1:-1:-1;;;;;;44803:25:0;;;;;;:19;:25;;;;;;;;44802:26;44675:153;:194;;;;-1:-1:-1;;;;;;44846:23:0;;;;;;:19;:23;;;;;;;;44845:24;44675:194;44657:326;;;44896:8;:15;;-1:-1:-1;;;;44896:15:0;-1:-1:-1;;;44896:15:0;;;44928:10;:8;:10::i;:::-;44955:8;:16;;-1:-1:-1;;;;44955:16:0;;;44657:326;45011:8;;-1:-1:-1;;;;;45121:25:0;;44995:12;45121:25;;;:19;:25;;;;;;45011:8;-1:-1:-1;;;45011:8:0;;;;;45010:9;;45121:25;;:52;;-1:-1:-1;;;;;;45150:23:0;;;;;;:19;:23;;;;;;;;45121:52;45117:100;;;-1:-1:-1;45200:5:0;45117:100;45229:12;45334:7;45330:1099;;;-1:-1:-1;;;;;45386:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;45435:1;45419:13;;:17;45386:50;45382:898;;;45464:34;45494:3;45464:25;45475:13;;45464:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;45457:41;;45551:13;;45533:14;;45526:4;:21;;;;:::i;:::-;45525:39;;;;:::i;:::-;45505:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;45633:13:0;;45613:16;;45606:23;;:4;:23;:::i;:::-;45605:41;;;;:::i;:::-;45583:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;45703:13:0;;45689:10;;45682:17;;:4;:17;:::i;:::-;45681:35;;;;:::i;:::-;45665:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;45785:13:0;;45765:16;;45758:23;;:4;:23;:::i;:::-;45757:41;;;;:::i;:::-;45735:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;45382:898:0;;-1:-1:-1;45382:898:0;;-1:-1:-1;;;;;45860:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45910:1;45895:12;;:16;45860:51;45856:424;;;45939:33;45968:3;45939:24;45950:12;;45939:6;:10;;:24;;;;:::i;:33::-;45932:40;;46024:12;;46007:13;;46000:4;:20;;;;:::i;:::-;45999:37;;;;:::i;:::-;45979:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;46104:12:0;;46085:15;;46078:22;;:4;:22;:::i;:::-;46077:39;;;;:::i;:::-;46055:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46172:12:0;;46159:9;;46152:16;;:4;:16;:::i;:::-;46151:33;;;;:::i;:::-;46135:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46252:12:0;;46233:15;;46226:22;;:4;:22;:::i;:::-;46225:39;;;;:::i;:::-;46203:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;45856:424:0;46300:8;;46296:91;;46329:42;46345:4;46359;46366;46329:15;:42::i;:::-;46403:14;46413:4;46403:14;;:::i;:::-;;;45330:1099;46441:33;46457:4;46463:2;46467:6;46441:15;:33::i;:::-;41748:4734;;;;41635:4847;;;:::o;3774:191::-;3867:6;;;-1:-1:-1;;;;;3884:17:0;;;-1:-1:-1;;;;;;3884:17:0;;;;;;;3917:40;;3867:6;;;3884:17;3867:6;;3917:40;;3848:16;;3917:40;3837:128;3774:191;:::o;41305:188::-;-1:-1:-1;;;;;41388:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41388:39:0;;;;;;;;;;41445:40;;41388:39;;:31;41445:40;;;41305:188;;:::o;15260:733::-;-1:-1:-1;;;;;15400:20:0;;15392:70;;;;-1:-1:-1;;;15392:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15481:23:0;;15473:71;;;;-1:-1:-1;;;15473:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15641:17:0;;15617:21;15641:17;;;;;;;;;;;15677:23;;;;15669:74;;;;-1:-1:-1;;;15669:74:0;;13809:2:1;15669:74:0;;;13791:21:1;13848:2;13828:18;;;13821:30;13887:34;13867:18;;;13860:62;-1:-1:-1;;;13938:18:1;;;13931:36;13984:19;;15669:74:0;13607:402:1;15669:74:0;-1:-1:-1;;;;;15779:17:0;;;:9;:17;;;;;;;;;;;15799:22;;;15779:42;;15843:20;;;;;;;;:30;;15815:6;;15779:9;15843:30;;15815:6;;15843:30;:::i;:::-;;;;;;;;15908:9;-1:-1:-1;;;;;15891:35:0;15900:6;-1:-1:-1;;;;;15891:35:0;;15919:6;15891:35;;;;1410:25:1;;1398:2;1383:18;;1264:177;15891:35:0;;;;;;;;15381:612;15260:733;;;:::o;47610:1882::-;47693:4;47649:23;11312:18;;;;;;;;;;;47649:50;;47710:25;47799:12;;47778:18;;47757;;47738:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47710:101;-1:-1:-1;47822:12:0;47851:20;;;:46;;-1:-1:-1;47875:22:0;;47851:46;47847:85;;;47914:7;;;47610:1882::o;47847:85::-;47966:18;;:23;;47987:2;47966:23;:::i;:::-;47948:15;:41;47944:115;;;48024:18;;:23;;48045:2;48024:23;:::i;:::-;48006:41;;47944:115;48120:23;48207:1;48187:17;48165:18;;48147:15;:36;;;;:::i;:::-;48146:58;;;;:::i;:::-;:62;;;;:::i;:::-;48120:88;-1:-1:-1;48219:26:0;48248:36;:15;48120:88;48248:19;:36::i;:::-;48219:65;-1:-1:-1;48325:21:0;48359:36;48219:65;48359:16;:36::i;:::-;48408:18;48429:44;:21;48455:17;48429:25;:44::i;:::-;48408:65;;48480:21;48504:55;48541:17;48504:32;48519:16;;48504:10;:14;;:32;;;;:::i;:55::-;48480:79;;48570:23;48596:57;48635:17;48596:34;48611:18;;48596:10;:14;;:34;;;;:::i;:57::-;48570:83;;48664:17;48684:51;48717:17;48684:28;48699:12;;48684:10;:14;;:28;;;;:::i;:51::-;48664:71;-1:-1:-1;48748:23:0;48664:71;48803:15;48774:26;48787:13;48774:10;:26;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48864:1;48843:18;:22;;;48870:16;:20;;;48901:18;:22;;;48934:12;:16;;;48985:9;;48977:45;;48748:82;;-1:-1:-1;;;;;;48985:9:0;;49008;;48977:45;48864:1;48977:45;49008:9;48985;48977:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49055:15:0;;49047:57;;48963:59;;-1:-1:-1;;;;;;49055:15:0;;49084;;49047:57;;;;49084:15;49055;49047:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49033:71:0;;-1:-1:-1;;49123:19:0;;;;;:42;;;49164:1;49146:15;:19;49123:42;49119:278;;;49182:46;49195:15;49212;49182:12;:46::i;:::-;49352:18;;49248:137;;;14426:25:1;;;14482:2;14467:18;;14460:34;;;14510:18;;;14503:34;;;;49248:137:0;;;;;;14414:2:1;49248:137:0;;;49119:278;49431:13;;49423:61;;-1:-1:-1;;;;;49431:13:0;;;;49458:21;;49423:61;;;;49458:21;49431:13;49423:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;47610:1882:0:o;23494:98::-;23552:7;23579:5;23583:1;23579;:5;:::i;:::-;23572:12;23494:98;-1:-1:-1;;;23494:98:0:o;23893:::-;23951:7;23978:5;23982:1;23978;:5;:::i;23137:98::-;23195:7;23222:5;23226:1;23222;:5;:::i;46490:589::-;46640:16;;;46654:1;46640:16;;;;;;;;46616:21;;46640:16;;;;;;;;;;-1:-1:-1;46640:16:0;46616:40;;46685:4;46667;46672:1;46667:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46667:23:0;;;-1:-1:-1;;;;;46667:23:0;;;;;46711:15;-1:-1:-1;;;;;46711:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46701:4;46706:1;46701:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;46701:32:0;;;-1:-1:-1;;;;;46701:32:0;;;;;46746:62;46763:4;46778:15;46796:11;46746:8;:62::i;:::-;46847:224;;-1:-1:-1;;;46847:224:0;;-1:-1:-1;;;;;46847:15:0;:66;;;;:224;;46928:11;;46954:1;;46998:4;;47025;;47045:15;;46847:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46545:534;46490:589;:::o;47087:515::-;47235:62;47252:4;47267:15;47285:11;47235:8;:62::i;:::-;47544:9;;47340:254;;-1:-1:-1;;;47340:254:0;;47412:4;47340:254;;;16394:34:1;16444:18;;;16437:34;;;47458:1:0;16487:18:1;;;16480:34;;;16530:18;;;16523:34;-1:-1:-1;;;;;47544:9:0;;;16573:19:1;;;16566:44;47568:15:0;16626:19:1;;;16619:35;47340:15:0;:31;;;;;;47379:9;;16328:19:1;;47340:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47087:515;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1446:247::-;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;1613:9;1600:23;1632:31;1657:5;1632:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2787:385::-;2873:6;2881;2889;2897;2950:3;2938:9;2929:7;2925:23;2921:33;2918:53;;;2967:1;2964;2957:12;2918:53;-1:-1:-1;;2990:23:1;;;3060:2;3045:18;;3032:32;;-1:-1:-1;3111:2:1;3096:18;;3083:32;;3162:2;3147:18;3134:32;;-1:-1:-1;2787:385:1;-1:-1:-1;2787:385:1:o;3366:160::-;3431:20;;3487:13;;3480:21;3470:32;;3460:60;;3516:1;3513;3506:12;3531:315;3596:6;3604;3657:2;3645:9;3636:7;3632:23;3628:32;3625:52;;;3673:1;3670;3663:12;3625:52;3712:9;3699:23;3731:31;3756:5;3731:31;:::i;:::-;3781:5;-1:-1:-1;3805:35:1;3836:2;3821:18;;3805:35;:::i;:::-;3795:45;;3531:315;;;;;:::o;3851:180::-;3907:6;3960:2;3948:9;3939:7;3935:23;3931:32;3928:52;;;3976:1;3973;3966:12;3928:52;3999:26;4015:9;3999:26;:::i;4036:388::-;4104:6;4112;4165:2;4153:9;4144:7;4140:23;4136:32;4133:52;;;4181:1;4178;4171:12;4133:52;4220:9;4207:23;4239:31;4264:5;4239:31;:::i;:::-;4289:5;-1:-1:-1;4346:2:1;4331:18;;4318:32;4359:33;4318:32;4359:33;:::i;:::-;4411:7;4401:17;;;4036:388;;;;;:::o;4429:380::-;4508:1;4504:12;;;;4551;;;4572:61;;4626:4;4618:6;4614:17;4604:27;;4572:61;4679:2;4671:6;4668:14;4648:18;4645:38;4642:161;;;4725:10;4720:3;4716:20;4713:1;4706:31;4760:4;4757:1;4750:15;4788:4;4785:1;4778:15;4642:161;;4429:380;;;:::o;4814:356::-;5016:2;4998:21;;;5035:18;;;5028:30;5094:34;5089:2;5074:18;;5067:62;5161:2;5146:18;;4814:356::o;5175:127::-;5236:10;5231:3;5227:20;5224:1;5217:31;5267:4;5264:1;5257:15;5291:4;5288:1;5281:15;5307:168;5347:7;5413:1;5409;5405:6;5401:14;5398:1;5395:21;5390:1;5383:9;5376:17;5372:45;5369:71;;;5420:18;;:::i;:::-;-1:-1:-1;5460:9:1;;5307:168::o;5480:217::-;5520:1;5546;5536:132;;5590:10;5585:3;5581:20;5578:1;5571:31;5625:4;5622:1;5615:15;5653:4;5650:1;5643:15;5536:132;-1:-1:-1;5682:9:1;;5480:217::o;6527:128::-;6567:3;6598:1;6594:6;6591:1;6588:13;6585:39;;;6604:18;;:::i;:::-;-1:-1:-1;6640:9:1;;6527:128::o;10641:401::-;10843:2;10825:21;;;10882:2;10862:18;;;10855:30;10921:34;10916:2;10901:18;;10894:62;-1:-1:-1;;;10987:2:1;10972:18;;10965:35;11032:3;11017:19;;10641:401::o;11047:399::-;11249:2;11231:21;;;11288:2;11268:18;;;11261:30;11327:34;11322:2;11307:18;;11300:62;-1:-1:-1;;;11393:2:1;11378:18;;11371:33;11436:3;11421:19;;11047:399::o;13477:125::-;13517:4;13545:1;13542;13539:8;13536:34;;;13550:18;;:::i;:::-;-1:-1:-1;13587:9:1;;13477:125::o;14680:127::-;14741:10;14736:3;14732:20;14729:1;14722:31;14772:4;14769:1;14762:15;14796:4;14793:1;14786:15;14812:251;14882:6;14935:2;14923:9;14914:7;14910:23;14906:32;14903:52;;;14951:1;14948;14941:12;14903:52;14983:9;14977:16;15002:31;15027:5;15002:31;:::i;15068:980::-;15330:4;15378:3;15367:9;15363:19;15409:6;15398:9;15391:25;15435:2;15473:6;15468:2;15457:9;15453:18;15446:34;15516:3;15511:2;15500:9;15496:18;15489:31;15540:6;15575;15569:13;15606:6;15598;15591:22;15644:3;15633:9;15629:19;15622:26;;15683:2;15675:6;15671:15;15657:29;;15704:1;15714:195;15728:6;15725:1;15722:13;15714:195;;;15793:13;;-1:-1:-1;;;;;15789:39:1;15777:52;;15884:15;;;;15849:12;;;;15825:1;15743:9;15714:195;;;-1:-1:-1;;;;;;;15965:32:1;;;;15960:2;15945:18;;15938:60;-1:-1:-1;;;16029:3:1;16014:19;16007:35;15926:3;15068:980;-1:-1:-1;;;15068:980:1:o;16665:306::-;16753:6;16761;16769;16822:2;16810:9;16801:7;16797:23;16793:32;16790:52;;;16838:1;16835;16828:12;16790:52;16867:9;16861:16;16851:26;;16917:2;16906:9;16902:18;16896:25;16886:35;;16961:2;16950:9;16946:18;16940:25;16930:35;;16665:306;;;;;:::o

Swarm Source

ipfs://807b762261292c03f99316f6b8e0845517772a1198f8a3affaeb3e94a96001f3
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.