ETH Price: $2,581.01 (-4.36%)

Token

Pirate Ship (PIRATE)
 

Overview

Max Total Supply

10,000,000,000 PIRATE

Holders

131

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
PIRATE

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-13
*/

/**
 *Submitted for verification at Etherscan.io on 2023-09-18
*/

//SPDX-License-Identifier: MIT
// pragma solidity ^0.8;
pragma solidity ^0.8.0;

// https://uniswap.org/docs/v2/smart-contracts

interface IUniswapV2Router {
  function getAmountsOut(uint amountIn, address[] memory path)
    external
    view
    returns (uint[] memory amounts);
    // function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    // function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);

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

    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;

  function swapExactTokensForTokens(
    uint amountIn,
    uint amountOutMin,
    address[] calldata path,
    address to,
    uint deadline
  ) external returns (uint[] memory amounts);

  function swapExactTokensForETH(
    uint amountIn,
    uint amountOutMin,
    address[] calldata path,
    address to,
    uint deadline
  ) external returns (uint[] memory amounts);

  function swapExactETHForTokens(
    uint amountOutMin,
    address[] calldata path,
    address to,
    uint deadline
  ) external payable returns (uint[] memory amounts);

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

  function removeLiquidity(
    address tokenA,
    address tokenB,
    uint liquidity,
    uint amountAMin,
    uint amountBMin,
    address to,
    uint deadline
  ) external returns (uint amountA, uint amountB);  

    function WETH() external pure returns (address);

    function factory() external pure returns (address);
}

interface IUniswapV2Pair {
  function token0() external view returns (address);

  function token1() external view returns (address);

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

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

interface IUniswapV2Factory {
  function getPair(address token0, address token1) external view returns (address);
  function createPair(address tokenA, address tokenB) external returns (address);
}

interface Pair {
  function token0() external view returns (address);
  function token1() external view returns (address);
}
// File: interfaces/IAddressContract.sol


pragma solidity ^0.8.0;


interface IAddressContract {

    function getDao() external view returns (address);
    
    function getTreasury() external view returns (address);
   
    function getPirateNFT() external view returns (address);
    
    function getPirate() external view returns (address);

    function getBounty() external view returns (address);
    
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// File: PiratesToken.sol


pragma solidity 0.8.19;






interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(address token,uint amountTokenDesired,uint amountTokenMin,uint amountETHMin,address to,uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
} 

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn,uint amountOutMin,address[] calldata path,address to,uint deadline) external;
}
 
// interface IUniswapV2Factory {
//      function createPair(address tokenA, address tokenB) external returns (address pair);
// }

contract PIRATE is ERC20, Ownable {
    
    // state vars
    IUniswapV2Router02 public uniswapV2Router; 
    
    bool private swapping;
    bool public tradeEnabled = false;

    uint256 public buyTax = 95;
    uint256 public sellTax = 95;
    uint256 public treasuryShare = 50;

    uint public pendingTax;
    uint public swapThreshhold = 100_000 ether;
    uint256 public maxTxAmount = 100_000_000 ether;
    uint256 public maxWalletAmount = 200_000_000 ether;
    address public treasury = 0xd53F1723756f7a889395E5FDf17466Dce4B0cC64;
    address public marketingWallet = 0xd53F1723756f7a889395E5FDf17466Dce4B0cC64;
    address public uniswapV2Pair;

    mapping (address => bool) public automatedMarketMakerPairs;
    mapping(address => bool) public isExcludedFromTax;
    mapping (address => bool) public isExcludedFromLimits;
    
    // events
    event TreasuryAddressUpdated(address newTreasury);
    event ExcludeAddress(address whitelistAccount, bool value);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event TaxUpdated(uint256 buyTax, uint256 sellTax);
    event RedeemTax(uint scrabToken, uint ethAmount);
    event TradeEnabled();


    constructor() ERC20("Pirate Ship", "PIRATE") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        isExcludedFromLimits[owner()] = true;
        isExcludedFromLimits[0x000000000000000000000000000000000000dEaD] = true;
        isExcludedFromLimits[marketingWallet] = true;
        isExcludedFromTax[address(this)] = true;
        isExcludedFromTax[owner()] = true;
        isExcludedFromTax[marketingWallet] = true;
        _mint(msg.sender, 10_000_000_000 ether);
    }

    receive() external payable {}
  
    function updateUniswapV2Router(address newAddress) external onlyOwner {
        require(newAddress != address(uniswapV2Router), "The router already has that address");
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
    }

    function setContractAddresses(IAddressContract _contractFactory) external onlyOwner {
        address _treasury = _contractFactory.getTreasury();
        treasury = _treasury;
        isExcludedFromTax[_treasury] = true;
        isExcludedFromTax[_contractFactory.getDao()] = true;
        isExcludedFromTax[_contractFactory.getPirateNFT()] = true;
        isExcludedFromTax[_contractFactory.getBounty()] = true;
        isExcludedFromLimits[_treasury] = true;
        isExcludedFromLimits[_contractFactory.getDao()] = true;
        isExcludedFromLimits[_contractFactory.getPirateNFT()] = true;
        isExcludedFromLimits[_contractFactory.getBounty()] = true;
        emit TreasuryAddressUpdated(_treasury);
    }
    
    function setswapThreshhold(uint256 _newlimit) external onlyOwner {
        swapThreshhold = _newlimit;
    }

    function setTax(uint256 _buyTax, uint _sellTax) external onlyOwner {
        require(_buyTax <= 50, "_buyTax: too high");
        require(_sellTax <= 50, "_sellTax: too high");
        buyTax = _buyTax;
        sellTax = _sellTax;
        emit TaxUpdated(_buyTax, _sellTax);
    }

    function changeTreasuryShare(uint _newShare) external onlyOwner {
        require(_newShare <= 100, "share: too high");
        treasuryShare = _newShare;
    }

    function setmarketingWallet(address _newWallet) external onlyOwner {
        require(_newWallet != address(0), "setmarketingWallet: invalid");
        isExcludedFromTax[_newWallet] = true;
        isExcludedFromLimits[_newWallet] = true;
        marketingWallet = _newWallet;
    }

    function setTreasury(address _newTreasury) external onlyOwner {
        require(_newTreasury != address(0), "setTreasury: invalid");
        isExcludedFromTax[_newTreasury] = true;
        isExcludedFromLimits[_newTreasury] = true;
        treasury = _newTreasury;
        emit TreasuryAddressUpdated(_newTreasury);
    }

    function excludeFromTax(address account, bool excluded) external onlyOwner {
        require(account != address(0), "excludeFromTax: Zero address");
        isExcludedFromTax[account] = excluded;
        emit ExcludeAddress(account, excluded);
    }

    function excludeFromLimits(address account, bool excluded) public onlyOwner {
        require(account != address(0), "excludeFromTax: Zero address");
        require(isExcludedFromLimits[account] != excluded, "Account is already the value of 'excluded'");
        isExcludedFromLimits[account] = excluded;
        emit ExcludeFromLimits(account, excluded);
    }

    function setMaxTxAmount(uint256 _amount) external onlyOwner {
        require(_amount > 10_000 ether, "Wrong Max transaction amount");
        maxTxAmount = _amount;
    }
    function setMaxWalletAmount(uint256 _amount) external onlyOwner() {
        require(_amount > 10_000 ether, "Wrong Max wallet amount");
        maxWalletAmount = _amount;
    }

    function excludeMultipleAccountsFromTax(address[] memory accounts, bool excluded) external onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            isExcludedFromTax[accounts[i]] = excluded;
        }
    }

    function excludeMultipleAccountsFromLimits(address[] memory accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            isExcludedFromLimits[accounts[i]] = excluded;
        }
    }

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

    function redeemTax() external onlyOwner {
       _redeemTax();
    }

    function enableTrading() external onlyOwner {
        require(!tradeEnabled, "Cannot reenable trading");
        tradeEnabled = true;
        emit TradeEnabled();
    }

    function burn(uint amount) external {
        require(msg.sender == treasury, "only treasury can burn");
        _burn(msg.sender, amount);
    }
    
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {  
        
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        if(amount == 0) {
            super._transfer(sender, recipient, 0);
            return;
        }
       
        if (sender != owner() && recipient != owner()) {
            if(!isExcludedFromLimits[sender] && !isExcludedFromLimits[recipient]){
                require(tradeEnabled,"Trading not open yet");
                require(amount < maxTxAmount ,"transfer: amount exceeds the maxTxAmount");
                if (recipient != uniswapV2Pair) {
                    require(balanceOf(recipient) + amount < maxWalletAmount, "transfer: Balance exceeds wallet size!");
                }
            }
        }

        bool canRedeemTax = swapThreshhold < balanceOf(address(this));

        if( canRedeemTax &&
            !swapping &&
            !automatedMarketMakerPairs[sender] &&
            sender != owner() &&
            recipient != owner()
        ) 
        {
            _redeemTax();
        } 

        bool takeFee = !swapping;
        if(isExcludedFromTax[sender] || isExcludedFromTax[recipient]) {
            takeFee = false;
        }   

        uint taxAmount;
        if (takeFee) {        
            if (automatedMarketMakerPairs[recipient]) {
                taxAmount = amount * sellTax / 100;
            }
            else if (automatedMarketMakerPairs[sender]) {
                taxAmount = amount * buyTax / 100;
            }
        }    

        if (taxAmount > 0) {
            pendingTax = pendingTax + taxAmount;
            amount = amount - taxAmount;
            super._transfer(sender, address(this), taxAmount);
        }

        super._transfer(sender, recipient, amount);
    }

    function _redeemTax() internal {
        require(treasury != address(0) && marketingWallet != address(0), "redeemTax: Address not set");
        uint _pendingTax = pendingTax;
        if (_pendingTax > 0) {
            swapping = true;    
            swapTokensForEth(_pendingTax);
            pendingTax = balanceOf(address(this));
            uint ethAmount = address(this).balance;
            uint treasuryAmount = (ethAmount * treasuryShare) / 100; 
            if (treasuryAmount > 0) {
                (bool successTreasury, ) = address(treasury).call{ value: treasuryAmount }("");
                require(successTreasury, "treasury transfer failed");
            }
            uint marketingAmount = ethAmount - treasuryAmount;
            if (marketingAmount > 0) {
                (bool successMarketing, ) = address(marketingWallet).call{ value: marketingAmount }("");
                require(successMarketing, "marketing transfer failed");
            }
            swapping = false;         
            emit RedeemTax(_pendingTax, ethAmount);
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp
        );
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;
    }
}

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":false,"internalType":"address","name":"whitelistAccount","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"ExcludeAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"scrabToken","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"RedeemTax","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellTax","type":"uint256"}],"name":"TaxUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"TradeEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTreasury","type":"address"}],"name":"TreasuryAddressUpdated","type":"event"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newShare","type":"uint256"}],"name":"changeTreasuryShare","outputs":[],"stateMutability":"nonpayable","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromTax","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":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromTax","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":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"pendingTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IAddressContract","name":"_contractFactory","type":"address"}],"name":"setContractAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newTreasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newlimit","type":"uint256"}],"name":"setswapThreshhold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshhold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526006805460ff60a81b19169055605f6007819055600855603260095569152d02c7e14af6800000600b556a52b7d2dcc80cd2e4000000600c556aa56fa5b99019a5c8000000600d55600e805473d53f1723756f7a889395e5fdf17466dce4b0cc646001600160a01b03199182168117909255600f805490911690911790553480156200008f57600080fd5b506040518060400160405280600b81526020016a050697261746520536869760ac1b8152506040518060400160405280600681526020016550495241544560d01b8152508160039081620000e4919062000656565b506004620000f3828262000656565b505050620001106200010a620003cd60201b60201c565b620003d1565b600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051600091839163c45a0155916004808201926020929091908290030181865afa1580156200017a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a0919062000722565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000214919062000722565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000262573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000288919062000722565b601080546001600160a01b0319166001600160a01b0383161790559050620002b281600162000423565b600160136000620002cb6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055601384527f2264e2d7bacabe6058f5009f42467b9be28015e7760f87409562384c94ac271c805486166001908117909155600f549092168152828120805486168317905530815260129384905291822080549094168117909355620003666005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055600f5490911681526012909252902080549091166001179055620003c5336b204fce5e3e25026110000000620004ea565b50506200077c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff909116151503620004bf5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084015b60405180910390fd5b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b6001600160a01b038216620005425760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004b6565b806002600082825462000556919062000754565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005dd57607f821691505b602082108103620005fe57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005ad57600081815260208120601f850160051c810160208610156200062d5750805b601f850160051c820191505b818110156200064e5782815560010162000639565b505050505050565b81516001600160401b03811115620006725762000672620005b2565b6200068a81620006838454620005c8565b8462000604565b602080601f831160018114620006c25760008415620006a95750858301515b600019600386901b1c1916600185901b1785556200064e565b600085815260208120601f198616915b82811015620006f357888601518255948401946001909101908401620006d2565b5085821015620007125787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200073557600080fd5b81516001600160a01b03811681146200074d57600080fd5b9392505050565b808201808211156200077657634e487b7160e01b600052601160045260246000fd5b92915050565b612b23806200078c6000396000f3fe6080604052600436106102815760003560e01c8063848105d31161014f578063c0a904a2116100c1578063dd62ed3e1161007a578063dd62ed3e146107a4578063e2a47a13146107c4578063ec28438a146107da578063f05ffa26146107fa578063f0f4426014610810578063f2fde38b1461083057600080fd5b8063c0a904a2146106dd578063c6a30647146106fd578063c6e5a5ab1461071d578063cb4ca6311461073d578063cc1776d31461076d578063d621e8131461078357600080fd5b80639a7a23d6116101135780639a7a23d614610622578063a457c2d714610642578063a9059cbb14610662578063aa4bde2814610682578063b5605b8e14610698578063b62496f5146106ad57600080fd5b8063848105d3146105a45780638a8c523c146105c45780638c0b5e22146105d95780638da5cb5b146105ef57806395d89b411461060d57600080fd5b806339509351116101f357806365b8dbc0116101ac57806365b8dbc0146104e3578063667f65261461050357806370a0823114610523578063715018a61461055957806375f0a8741461056e5780637796ff371461058e57600080fd5b8063395093511461041d57806342966c681461043d57806349bd5a5e1461045d5780634f7041a51461047d5780635cce86cd1461049357806361d027b3146104c357600080fd5b80631f88bb87116102455780631f88bb8714610361578063224611731461038157806323b872dd146103a157806327a14fc2146103c15780632ca1bebc146103e1578063313ce5671461040157600080fd5b8063013f1dad1461028d57806306fdde03146102af578063095ea7b3146102da5780631694505e1461030a57806318160ddd1461034257600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102ad6102a836600461264f565b610850565b005b3480156102bb57600080fd5b506102c46108a5565b6040516102d19190612668565b60405180910390f35b3480156102e657600080fd5b506102fa6102f53660046126db565b610937565b60405190151581526020016102d1565b34801561031657600080fd5b5060065461032a906001600160a01b031681565b6040516001600160a01b0390911681526020016102d1565b34801561034e57600080fd5b506002545b6040519081526020016102d1565b34801561036d57600080fd5b506102ad61037c366004612707565b610951565b34801561038d57600080fd5b506102ad61039c366004612707565b610de7565b3480156103ad57600080fd5b506102fa6103bc36600461272b565b610e94565b3480156103cd57600080fd5b506102ad6103dc36600461264f565b610eb8565b3480156103ed57600080fd5b506102ad6103fc366004612792565b610f1e565b34801561040d57600080fd5b50604051601281526020016102d1565b34801561042957600080fd5b506102fa6104383660046126db565b610f92565b34801561044957600080fd5b506102ad61045836600461264f565b610fb4565b34801561046957600080fd5b5060105461032a906001600160a01b031681565b34801561048957600080fd5b5061035360075481565b34801561049f57600080fd5b506102fa6104ae366004612707565b60136020526000908152604090205460ff1681565b3480156104cf57600080fd5b50600e5461032a906001600160a01b031681565b3480156104ef57600080fd5b506102ad6104fe366004612707565b611014565b34801561050f57600080fd5b506102ad61051e366004612869565b611221565b34801561052f57600080fd5b5061035361053e366004612707565b6001600160a01b031660009081526020819052604090205490565b34801561056557600080fd5b506102ad6112f4565b34801561057a57600080fd5b50600f5461032a906001600160a01b031681565b34801561059a57600080fd5b5061035360095481565b3480156105b057600080fd5b506102ad6105bf36600461264f565b611308565b3480156105d057600080fd5b506102ad611315565b3480156105e557600080fd5b50610353600c5481565b3480156105fb57600080fd5b506005546001600160a01b031661032a565b34801561061957600080fd5b506102c46113b5565b34801561062e57600080fd5b506102ad61063d36600461288b565b6113c4565b34801561064e57600080fd5b506102fa61065d3660046126db565b611468565b34801561066e57600080fd5b506102fa61067d3660046126db565b6114e3565b34801561068e57600080fd5b50610353600d5481565b3480156106a457600080fd5b506102ad6114f1565b3480156106b957600080fd5b506102fa6106c8366004612707565b60116020526000908152604090205460ff1681565b3480156106e957600080fd5b506102ad6106f836600461288b565b611501565b34801561070957600080fd5b506102ad61071836600461288b565b611641565b34801561072957600080fd5b506102ad610738366004612792565b6116fb565b34801561074957600080fd5b506102fa610758366004612707565b60126020526000908152604090205460ff1681565b34801561077957600080fd5b5061035360085481565b34801561078f57600080fd5b506006546102fa90600160a81b900460ff1681565b3480156107b057600080fd5b506103536107bf3660046128c0565b61176a565b3480156107d057600080fd5b50610353600b5481565b3480156107e657600080fd5b506102ad6107f536600461264f565b611795565b34801561080657600080fd5b50610353600a5481565b34801561081c57600080fd5b506102ad61082b366004612707565b6117fb565b34801561083c57600080fd5b506102ad61084b366004612707565b6118d0565b610858611946565b60648111156108a05760405162461bcd60e51b815260206004820152600f60248201526e0e6d0c2e4ca7440e8dede40d0d2ced608b1b60448201526064015b60405180910390fd5b600955565b6060600380546108b4906128f9565b80601f01602080910402602001604051908101604052809291908181526020018280546108e0906128f9565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b6000336109458185856119a0565b60019150505b92915050565b610959611946565b6000816001600160a01b0316633b19e84a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610999573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bd9190612933565b600e80546001600160a01b0319166001600160a01b038381169182179092556000908152601260208181526040808420805460ff191660019081179091558151632dc2046f60e21b8152915196975095929488169263b70811bc926004808401939192918290030181865afa158015610a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5e9190612933565b6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000846001600160a01b031663d3b751f56040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ad9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afd9190612933565b6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000846001600160a01b031663f49bff7b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9c9190612933565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905585821681526013808552838220805490961660019081179096558351632dc2046f60e21b81529351909491939288169263b70811bc9260048083019391928290030181865afa158015610c21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c459190612933565b6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600160136000846001600160a01b031663d3b751f56040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce49190612933565b6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600160136000846001600160a01b031663f49bff7b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d839190612933565b6001600160a01b0390811682526020808301939093526040918201600020805460ff1916941515949094179093555191831682527fb6a5e89655cf506139085f051af608195ed056f8dc550b180a1c38d401e2b6c491015b60405180910390a15050565b610def611946565b6001600160a01b038116610e455760405162461bcd60e51b815260206004820152601b60248201527f7365746d61726b6574696e6757616c6c65743a20696e76616c696400000000006044820152606401610897565b6001600160a01b031660008181526012602090815260408083208054600160ff1991821681179092556013909352922080549091169091179055600f80546001600160a01b0319169091179055565b600033610ea2858285611ac4565b610ead858585611b3e565b506001949350505050565b610ec0611946565b69021e19e0c9bab24000008111610f195760405162461bcd60e51b815260206004820152601760248201527f57726f6e67204d61782077616c6c657420616d6f756e740000000000000000006044820152606401610897565b600d55565b610f26611946565b60005b8251811015610f8d578160126000858481518110610f4957610f49612950565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610f858161297c565b915050610f29565b505050565b600033610945818585610fa5838361176a565b610faf9190612995565b6119a0565b600e546001600160a01b031633146110075760405162461bcd60e51b815260206004820152601660248201527537b7363c903a3932b0b9bab93c9031b0b710313ab93760511b6044820152606401610897565b6110113382611f17565b50565b61101c611946565b6006546001600160a01b03908116908216036110865760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b6064820152608401610897565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa1580156110e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111069190612933565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611168573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118c9190612933565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156111d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fd9190612933565b601080546001600160a01b0319166001600160a01b03929092169190911790555050565b611229611946565b603282111561126e5760405162461bcd60e51b81526020600482015260116024820152700bec4eaf2a8c2f07440e8dede40d0d2ced607b1b6044820152606401610897565b60328111156112b45760405162461bcd60e51b81526020600482015260126024820152710bee6cad8d8a8c2f07440e8dede40d0d2ced60731b6044820152606401610897565b6007829055600881905560408051838152602081018390527fb841faf0d1b32571f4ef966a2f35e3ae51f3cdda45318c3da5570a5b2ad856059101610ddb565b6112fc611946565b6113066000612049565b565b611310611946565b600b55565b61131d611946565b600654600160a81b900460ff16156113775760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610897565b6006805460ff60a81b1916600160a81b1790556040517f0270d74976d9c744a465e24d0e2675086607ed6163edf4e36cabaf9740ce2ef490600090a1565b6060600480546108b4906128f9565b6113cc611946565b6010546001600160a01b039081169083160361145a5760405162461bcd60e51b815260206004820152604160248201527f54686520556e697377617020706169722063616e6e6f742062652072656d6f7660448201527f65642066726f6d206175746f6d617465644d61726b65744d616b6572506169726064820152607360f81b608482015260a401610897565b611464828261209b565b5050565b60003381611476828661176a565b9050838110156114d65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610897565b610ead82868684036119a0565b600033610945818585611b3e565b6114f9611946565b61130661215c565b611509611946565b6001600160a01b03821661155f5760405162461bcd60e51b815260206004820152601c60248201527f6578636c75646546726f6d5461783a205a65726f2061646472657373000000006044820152606401610897565b6001600160a01b03821660009081526013602052604090205481151560ff9091161515036115e25760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610897565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910160405180910390a25050565b611649611946565b6001600160a01b03821661169f5760405162461bcd60e51b815260206004820152601c60248201527f6578636c75646546726f6d5461783a205a65726f2061646472657373000000006044820152606401610897565b6001600160a01b038216600081815260126020908152604091829020805460ff19168515159081179091558251938452908301527f262d34ae3567d3c454613a24b88ab4e8f981b86b844b1fd166fd6fec757b9fd99101610ddb565b611703611946565b60005b8251811015610f8d57816013600085848151811061172657611726612950565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806117628161297c565b915050611706565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61179d611946565b69021e19e0c9bab240000081116117f65760405162461bcd60e51b815260206004820152601c60248201527f57726f6e67204d6178207472616e73616374696f6e20616d6f756e74000000006044820152606401610897565b600c55565b611803611946565b6001600160a01b0381166118505760405162461bcd60e51b81526020600482015260146024820152731cd95d151c99585cdd5c9e4e881a5b9d985b1a5960621b6044820152606401610897565b6001600160a01b03811660008181526012602090815260408083208054600160ff1991821681179092556013845293829020805490941617909255600e80546001600160a01b0319168417905590519182527fb6a5e89655cf506139085f051af608195ed056f8dc550b180a1c38d401e2b6c4910160405180910390a150565b6118d8611946565b6001600160a01b03811661193d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610897565b61101181612049565b6005546001600160a01b031633146113065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610897565b6001600160a01b038316611a025760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610897565b6001600160a01b038216611a635760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610897565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611ad0848461176a565b90506000198114611b385781811015611b2b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610897565b611b3884848484036119a0565b50505050565b6001600160a01b038316611b645760405162461bcd60e51b8152600401610897906129a8565b6001600160a01b038216611b8a5760405162461bcd60e51b8152600401610897906129ed565b80600003611b9e57610f8d838360006123d3565b6005546001600160a01b03848116911614801590611bca57506005546001600160a01b03838116911614155b15611d66576001600160a01b03831660009081526013602052604090205460ff16158015611c1157506001600160a01b03821660009081526013602052604090205460ff16155b15611d6657600654600160a81b900460ff16611c665760405162461bcd60e51b8152602060048201526014602482015273151c98591a5b99c81b9bdd081bdc195b881e595d60621b6044820152606401610897565b600c548110611cc85760405162461bcd60e51b815260206004820152602860248201527f7472616e736665723a20616d6f756e74206578636565647320746865206d6178604482015267151e105b5bdd5b9d60c21b6064820152608401610897565b6010546001600160a01b03838116911614611d6657600d5481611d00846001600160a01b031660009081526020819052604090205490565b611d0a9190612995565b10611d665760405162461bcd60e51b815260206004820152602660248201527f7472616e736665723a2042616c616e636520657863656564732077616c6c65746044820152652073697a652160d01b6064820152608401610897565b30600090815260208190526040902054600b5410808015611d915750600654600160a01b900460ff16155b8015611db657506001600160a01b03841660009081526011602052604090205460ff16155b8015611dd057506005546001600160a01b03858116911614155b8015611dea57506005546001600160a01b03848116911614155b15611df757611df761215c565b6006546001600160a01b03851660009081526012602052604090205460ff600160a01b909204821615911680611e4557506001600160a01b03841660009081526012602052604090205460ff165b15611e4e575060005b60008115611ed6576001600160a01b03851660009081526011602052604090205460ff1615611e9857606460085485611e879190612a30565b611e919190612a47565b9050611ed6565b6001600160a01b03861660009081526011602052604090205460ff1615611ed657606460075485611ec99190612a30565b611ed39190612a47565b90505b8015611f045780600a54611eea9190612995565b600a55611ef78185612a69565b9350611f048630836123d3565b611f0f8686866123d3565b505050505050565b6001600160a01b038216611f775760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610897565b6001600160a01b03821660009081526020819052604090205481811015611feb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610897565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff9091161515036121315760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610897565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b600e546001600160a01b0316158015906121805750600f546001600160a01b031615155b6121cc5760405162461bcd60e51b815260206004820152601a60248201527f72656465656d5461783a2041646472657373206e6f74207365740000000000006044820152606401610897565b600a548015611011576006805460ff60a01b1916600160a01b1790556121f1816124fd565b30600090815260208190526040812054600a556009544791906064906122179084612a30565b6122219190612a47565b905080156122ce57600e546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612276576040519150601f19603f3d011682016040523d82523d6000602084013e61227b565b606091505b50509050806122cc5760405162461bcd60e51b815260206004820152601860248201527f7472656173757279207472616e73666572206661696c656400000000000000006044820152606401610897565b505b60006122da8284612a69565b9050801561238757600f546040516000916001600160a01b03169083908381818185875af1925050503d806000811461232f576040519150601f19603f3d011682016040523d82523d6000602084013e612334565b606091505b50509050806123855760405162461bcd60e51b815260206004820152601960248201527f6d61726b6574696e67207472616e73666572206661696c6564000000000000006044820152606401610897565b505b6006805460ff60a01b1916905560408051858152602081018590527f65de9d6814ed6eae64bc3e268535918a36a6cdfa3b94257f9dffc2bbc73e88ea910160405180910390a150505050565b6001600160a01b0383166123f95760405162461bcd60e51b8152600401610897906129a8565b6001600160a01b03821661241f5760405162461bcd60e51b8152600401610897906129ed565b6001600160a01b038316600090815260208190526040902054818110156124975760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610897565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611b38565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061253257612532612950565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561258b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125af9190612933565b816001815181106125c2576125c2612950565b6001600160a01b0392831660209182029290920101526006546125e891309116846119a0565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612621908590600090869030904290600401612a7c565b600060405180830381600087803b15801561263b57600080fd5b505af1158015611f0f573d6000803e3d6000fd5b60006020828403121561266157600080fd5b5035919050565b600060208083528351808285015260005b8181101561269557858101830151858201604001528201612679565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461101157600080fd5b80356126d6816126b6565b919050565b600080604083850312156126ee57600080fd5b82356126f9816126b6565b946020939093013593505050565b60006020828403121561271957600080fd5b8135612724816126b6565b9392505050565b60008060006060848603121561274057600080fd5b833561274b816126b6565b9250602084013561275b816126b6565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b803580151581146126d657600080fd5b600080604083850312156127a557600080fd5b823567ffffffffffffffff808211156127bd57600080fd5b818501915085601f8301126127d157600080fd5b81356020828211156127e5576127e561276c565b8160051b604051601f19603f8301168101818110868211171561280a5761280a61276c565b60405292835281830193508481018201928984111561282857600080fd5b948201945b8386101561284d5761283e866126cb565b8552948201949382019361282d565b965061285c9050878201612782565b9450505050509250929050565b6000806040838503121561287c57600080fd5b50508035926020909101359150565b6000806040838503121561289e57600080fd5b82356128a9816126b6565b91506128b760208401612782565b90509250929050565b600080604083850312156128d357600080fd5b82356128de816126b6565b915060208301356128ee816126b6565b809150509250929050565b600181811c9082168061290d57607f821691505b60208210810361292d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561294557600080fd5b8151612724816126b6565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161298e5761298e612966565b5060010190565b8082018082111561094b5761094b612966565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761094b5761094b612966565b600082612a6457634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561094b5761094b612966565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612acc5784516001600160a01b031683529383019391830191600101612aa7565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122075154da9527f733b2939b3a94cffcce042ec5fce1d9fbbf6fca39b19b9aa6ce664736f6c63430008130033

Deployed Bytecode

0x6080604052600436106102815760003560e01c8063848105d31161014f578063c0a904a2116100c1578063dd62ed3e1161007a578063dd62ed3e146107a4578063e2a47a13146107c4578063ec28438a146107da578063f05ffa26146107fa578063f0f4426014610810578063f2fde38b1461083057600080fd5b8063c0a904a2146106dd578063c6a30647146106fd578063c6e5a5ab1461071d578063cb4ca6311461073d578063cc1776d31461076d578063d621e8131461078357600080fd5b80639a7a23d6116101135780639a7a23d614610622578063a457c2d714610642578063a9059cbb14610662578063aa4bde2814610682578063b5605b8e14610698578063b62496f5146106ad57600080fd5b8063848105d3146105a45780638a8c523c146105c45780638c0b5e22146105d95780638da5cb5b146105ef57806395d89b411461060d57600080fd5b806339509351116101f357806365b8dbc0116101ac57806365b8dbc0146104e3578063667f65261461050357806370a0823114610523578063715018a61461055957806375f0a8741461056e5780637796ff371461058e57600080fd5b8063395093511461041d57806342966c681461043d57806349bd5a5e1461045d5780634f7041a51461047d5780635cce86cd1461049357806361d027b3146104c357600080fd5b80631f88bb87116102455780631f88bb8714610361578063224611731461038157806323b872dd146103a157806327a14fc2146103c15780632ca1bebc146103e1578063313ce5671461040157600080fd5b8063013f1dad1461028d57806306fdde03146102af578063095ea7b3146102da5780631694505e1461030a57806318160ddd1461034257600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102ad6102a836600461264f565b610850565b005b3480156102bb57600080fd5b506102c46108a5565b6040516102d19190612668565b60405180910390f35b3480156102e657600080fd5b506102fa6102f53660046126db565b610937565b60405190151581526020016102d1565b34801561031657600080fd5b5060065461032a906001600160a01b031681565b6040516001600160a01b0390911681526020016102d1565b34801561034e57600080fd5b506002545b6040519081526020016102d1565b34801561036d57600080fd5b506102ad61037c366004612707565b610951565b34801561038d57600080fd5b506102ad61039c366004612707565b610de7565b3480156103ad57600080fd5b506102fa6103bc36600461272b565b610e94565b3480156103cd57600080fd5b506102ad6103dc36600461264f565b610eb8565b3480156103ed57600080fd5b506102ad6103fc366004612792565b610f1e565b34801561040d57600080fd5b50604051601281526020016102d1565b34801561042957600080fd5b506102fa6104383660046126db565b610f92565b34801561044957600080fd5b506102ad61045836600461264f565b610fb4565b34801561046957600080fd5b5060105461032a906001600160a01b031681565b34801561048957600080fd5b5061035360075481565b34801561049f57600080fd5b506102fa6104ae366004612707565b60136020526000908152604090205460ff1681565b3480156104cf57600080fd5b50600e5461032a906001600160a01b031681565b3480156104ef57600080fd5b506102ad6104fe366004612707565b611014565b34801561050f57600080fd5b506102ad61051e366004612869565b611221565b34801561052f57600080fd5b5061035361053e366004612707565b6001600160a01b031660009081526020819052604090205490565b34801561056557600080fd5b506102ad6112f4565b34801561057a57600080fd5b50600f5461032a906001600160a01b031681565b34801561059a57600080fd5b5061035360095481565b3480156105b057600080fd5b506102ad6105bf36600461264f565b611308565b3480156105d057600080fd5b506102ad611315565b3480156105e557600080fd5b50610353600c5481565b3480156105fb57600080fd5b506005546001600160a01b031661032a565b34801561061957600080fd5b506102c46113b5565b34801561062e57600080fd5b506102ad61063d36600461288b565b6113c4565b34801561064e57600080fd5b506102fa61065d3660046126db565b611468565b34801561066e57600080fd5b506102fa61067d3660046126db565b6114e3565b34801561068e57600080fd5b50610353600d5481565b3480156106a457600080fd5b506102ad6114f1565b3480156106b957600080fd5b506102fa6106c8366004612707565b60116020526000908152604090205460ff1681565b3480156106e957600080fd5b506102ad6106f836600461288b565b611501565b34801561070957600080fd5b506102ad61071836600461288b565b611641565b34801561072957600080fd5b506102ad610738366004612792565b6116fb565b34801561074957600080fd5b506102fa610758366004612707565b60126020526000908152604090205460ff1681565b34801561077957600080fd5b5061035360085481565b34801561078f57600080fd5b506006546102fa90600160a81b900460ff1681565b3480156107b057600080fd5b506103536107bf3660046128c0565b61176a565b3480156107d057600080fd5b50610353600b5481565b3480156107e657600080fd5b506102ad6107f536600461264f565b611795565b34801561080657600080fd5b50610353600a5481565b34801561081c57600080fd5b506102ad61082b366004612707565b6117fb565b34801561083c57600080fd5b506102ad61084b366004612707565b6118d0565b610858611946565b60648111156108a05760405162461bcd60e51b815260206004820152600f60248201526e0e6d0c2e4ca7440e8dede40d0d2ced608b1b60448201526064015b60405180910390fd5b600955565b6060600380546108b4906128f9565b80601f01602080910402602001604051908101604052809291908181526020018280546108e0906128f9565b801561092d5780601f106109025761010080835404028352916020019161092d565b820191906000526020600020905b81548152906001019060200180831161091057829003601f168201915b5050505050905090565b6000336109458185856119a0565b60019150505b92915050565b610959611946565b6000816001600160a01b0316633b19e84a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610999573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109bd9190612933565b600e80546001600160a01b0319166001600160a01b038381169182179092556000908152601260208181526040808420805460ff191660019081179091558151632dc2046f60e21b8152915196975095929488169263b70811bc926004808401939192918290030181865afa158015610a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5e9190612933565b6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000846001600160a01b031663d3b751f56040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ad9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afd9190612933565b6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000846001600160a01b031663f49bff7b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9c9190612933565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905585821681526013808552838220805490961660019081179096558351632dc2046f60e21b81529351909491939288169263b70811bc9260048083019391928290030181865afa158015610c21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c459190612933565b6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600160136000846001600160a01b031663d3b751f56040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce49190612933565b6001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908315150217905550600160136000846001600160a01b031663f49bff7b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d839190612933565b6001600160a01b0390811682526020808301939093526040918201600020805460ff1916941515949094179093555191831682527fb6a5e89655cf506139085f051af608195ed056f8dc550b180a1c38d401e2b6c491015b60405180910390a15050565b610def611946565b6001600160a01b038116610e455760405162461bcd60e51b815260206004820152601b60248201527f7365746d61726b6574696e6757616c6c65743a20696e76616c696400000000006044820152606401610897565b6001600160a01b031660008181526012602090815260408083208054600160ff1991821681179092556013909352922080549091169091179055600f80546001600160a01b0319169091179055565b600033610ea2858285611ac4565b610ead858585611b3e565b506001949350505050565b610ec0611946565b69021e19e0c9bab24000008111610f195760405162461bcd60e51b815260206004820152601760248201527f57726f6e67204d61782077616c6c657420616d6f756e740000000000000000006044820152606401610897565b600d55565b610f26611946565b60005b8251811015610f8d578160126000858481518110610f4957610f49612950565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610f858161297c565b915050610f29565b505050565b600033610945818585610fa5838361176a565b610faf9190612995565b6119a0565b600e546001600160a01b031633146110075760405162461bcd60e51b815260206004820152601660248201527537b7363c903a3932b0b9bab93c9031b0b710313ab93760511b6044820152606401610897565b6110113382611f17565b50565b61101c611946565b6006546001600160a01b03908116908216036110865760405162461bcd60e51b815260206004820152602360248201527f54686520726f7574657220616c7265616479206861732074686174206164647260448201526265737360e81b6064820152608401610897565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a01559160048083019260209291908290030181865afa1580156110e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111069190612933565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611168573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061118c9190612933565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156111d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fd9190612933565b601080546001600160a01b0319166001600160a01b03929092169190911790555050565b611229611946565b603282111561126e5760405162461bcd60e51b81526020600482015260116024820152700bec4eaf2a8c2f07440e8dede40d0d2ced607b1b6044820152606401610897565b60328111156112b45760405162461bcd60e51b81526020600482015260126024820152710bee6cad8d8a8c2f07440e8dede40d0d2ced60731b6044820152606401610897565b6007829055600881905560408051838152602081018390527fb841faf0d1b32571f4ef966a2f35e3ae51f3cdda45318c3da5570a5b2ad856059101610ddb565b6112fc611946565b6113066000612049565b565b611310611946565b600b55565b61131d611946565b600654600160a81b900460ff16156113775760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610897565b6006805460ff60a81b1916600160a81b1790556040517f0270d74976d9c744a465e24d0e2675086607ed6163edf4e36cabaf9740ce2ef490600090a1565b6060600480546108b4906128f9565b6113cc611946565b6010546001600160a01b039081169083160361145a5760405162461bcd60e51b815260206004820152604160248201527f54686520556e697377617020706169722063616e6e6f742062652072656d6f7660448201527f65642066726f6d206175746f6d617465644d61726b65744d616b6572506169726064820152607360f81b608482015260a401610897565b611464828261209b565b5050565b60003381611476828661176a565b9050838110156114d65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610897565b610ead82868684036119a0565b600033610945818585611b3e565b6114f9611946565b61130661215c565b611509611946565b6001600160a01b03821661155f5760405162461bcd60e51b815260206004820152601c60248201527f6578636c75646546726f6d5461783a205a65726f2061646472657373000000006044820152606401610897565b6001600160a01b03821660009081526013602052604090205481151560ff9091161515036115e25760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610897565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc92910160405180910390a25050565b611649611946565b6001600160a01b03821661169f5760405162461bcd60e51b815260206004820152601c60248201527f6578636c75646546726f6d5461783a205a65726f2061646472657373000000006044820152606401610897565b6001600160a01b038216600081815260126020908152604091829020805460ff19168515159081179091558251938452908301527f262d34ae3567d3c454613a24b88ab4e8f981b86b844b1fd166fd6fec757b9fd99101610ddb565b611703611946565b60005b8251811015610f8d57816013600085848151811061172657611726612950565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806117628161297c565b915050611706565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61179d611946565b69021e19e0c9bab240000081116117f65760405162461bcd60e51b815260206004820152601c60248201527f57726f6e67204d6178207472616e73616374696f6e20616d6f756e74000000006044820152606401610897565b600c55565b611803611946565b6001600160a01b0381166118505760405162461bcd60e51b81526020600482015260146024820152731cd95d151c99585cdd5c9e4e881a5b9d985b1a5960621b6044820152606401610897565b6001600160a01b03811660008181526012602090815260408083208054600160ff1991821681179092556013845293829020805490941617909255600e80546001600160a01b0319168417905590519182527fb6a5e89655cf506139085f051af608195ed056f8dc550b180a1c38d401e2b6c4910160405180910390a150565b6118d8611946565b6001600160a01b03811661193d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610897565b61101181612049565b6005546001600160a01b031633146113065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610897565b6001600160a01b038316611a025760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610897565b6001600160a01b038216611a635760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610897565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611ad0848461176a565b90506000198114611b385781811015611b2b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610897565b611b3884848484036119a0565b50505050565b6001600160a01b038316611b645760405162461bcd60e51b8152600401610897906129a8565b6001600160a01b038216611b8a5760405162461bcd60e51b8152600401610897906129ed565b80600003611b9e57610f8d838360006123d3565b6005546001600160a01b03848116911614801590611bca57506005546001600160a01b03838116911614155b15611d66576001600160a01b03831660009081526013602052604090205460ff16158015611c1157506001600160a01b03821660009081526013602052604090205460ff16155b15611d6657600654600160a81b900460ff16611c665760405162461bcd60e51b8152602060048201526014602482015273151c98591a5b99c81b9bdd081bdc195b881e595d60621b6044820152606401610897565b600c548110611cc85760405162461bcd60e51b815260206004820152602860248201527f7472616e736665723a20616d6f756e74206578636565647320746865206d6178604482015267151e105b5bdd5b9d60c21b6064820152608401610897565b6010546001600160a01b03838116911614611d6657600d5481611d00846001600160a01b031660009081526020819052604090205490565b611d0a9190612995565b10611d665760405162461bcd60e51b815260206004820152602660248201527f7472616e736665723a2042616c616e636520657863656564732077616c6c65746044820152652073697a652160d01b6064820152608401610897565b30600090815260208190526040902054600b5410808015611d915750600654600160a01b900460ff16155b8015611db657506001600160a01b03841660009081526011602052604090205460ff16155b8015611dd057506005546001600160a01b03858116911614155b8015611dea57506005546001600160a01b03848116911614155b15611df757611df761215c565b6006546001600160a01b03851660009081526012602052604090205460ff600160a01b909204821615911680611e4557506001600160a01b03841660009081526012602052604090205460ff165b15611e4e575060005b60008115611ed6576001600160a01b03851660009081526011602052604090205460ff1615611e9857606460085485611e879190612a30565b611e919190612a47565b9050611ed6565b6001600160a01b03861660009081526011602052604090205460ff1615611ed657606460075485611ec99190612a30565b611ed39190612a47565b90505b8015611f045780600a54611eea9190612995565b600a55611ef78185612a69565b9350611f048630836123d3565b611f0f8686866123d3565b505050505050565b6001600160a01b038216611f775760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610897565b6001600160a01b03821660009081526020819052604090205481811015611feb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610897565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604090205481151560ff9091161515036121315760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c756500000000000000006064820152608401610897565b6001600160a01b03919091166000908152601160205260409020805460ff1916911515919091179055565b600e546001600160a01b0316158015906121805750600f546001600160a01b031615155b6121cc5760405162461bcd60e51b815260206004820152601a60248201527f72656465656d5461783a2041646472657373206e6f74207365740000000000006044820152606401610897565b600a548015611011576006805460ff60a01b1916600160a01b1790556121f1816124fd565b30600090815260208190526040812054600a556009544791906064906122179084612a30565b6122219190612a47565b905080156122ce57600e546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612276576040519150601f19603f3d011682016040523d82523d6000602084013e61227b565b606091505b50509050806122cc5760405162461bcd60e51b815260206004820152601860248201527f7472656173757279207472616e73666572206661696c656400000000000000006044820152606401610897565b505b60006122da8284612a69565b9050801561238757600f546040516000916001600160a01b03169083908381818185875af1925050503d806000811461232f576040519150601f19603f3d011682016040523d82523d6000602084013e612334565b606091505b50509050806123855760405162461bcd60e51b815260206004820152601960248201527f6d61726b6574696e67207472616e73666572206661696c6564000000000000006044820152606401610897565b505b6006805460ff60a01b1916905560408051858152602081018590527f65de9d6814ed6eae64bc3e268535918a36a6cdfa3b94257f9dffc2bbc73e88ea910160405180910390a150505050565b6001600160a01b0383166123f95760405162461bcd60e51b8152600401610897906129a8565b6001600160a01b03821661241f5760405162461bcd60e51b8152600401610897906129ed565b6001600160a01b038316600090815260208190526040902054818110156124975760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610897565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611b38565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061253257612532612950565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa15801561258b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125af9190612933565b816001815181106125c2576125c2612950565b6001600160a01b0392831660209182029290920101526006546125e891309116846119a0565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612621908590600090869030904290600401612a7c565b600060405180830381600087803b15801561263b57600080fd5b505af1158015611f0f573d6000803e3d6000fd5b60006020828403121561266157600080fd5b5035919050565b600060208083528351808285015260005b8181101561269557858101830151858201604001528201612679565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461101157600080fd5b80356126d6816126b6565b919050565b600080604083850312156126ee57600080fd5b82356126f9816126b6565b946020939093013593505050565b60006020828403121561271957600080fd5b8135612724816126b6565b9392505050565b60008060006060848603121561274057600080fd5b833561274b816126b6565b9250602084013561275b816126b6565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b803580151581146126d657600080fd5b600080604083850312156127a557600080fd5b823567ffffffffffffffff808211156127bd57600080fd5b818501915085601f8301126127d157600080fd5b81356020828211156127e5576127e561276c565b8160051b604051601f19603f8301168101818110868211171561280a5761280a61276c565b60405292835281830193508481018201928984111561282857600080fd5b948201945b8386101561284d5761283e866126cb565b8552948201949382019361282d565b965061285c9050878201612782565b9450505050509250929050565b6000806040838503121561287c57600080fd5b50508035926020909101359150565b6000806040838503121561289e57600080fd5b82356128a9816126b6565b91506128b760208401612782565b90509250929050565b600080604083850312156128d357600080fd5b82356128de816126b6565b915060208301356128ee816126b6565b809150509250929050565b600181811c9082168061290d57607f821691505b60208210810361292d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561294557600080fd5b8151612724816126b6565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161298e5761298e612966565b5060010190565b8082018082111561094b5761094b612966565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761094b5761094b612966565b600082612a6457634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561094b5761094b612966565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612acc5784516001600160a01b031683529383019391830191600101612aa7565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122075154da9527f733b2939b3a94cffcce042ec5fce1d9fbbf6fca39b19b9aa6ce664736f6c63430008130033

Deployed Bytecode Sourcemap

24993:10448:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28647:163;;;;;;;;;;-1:-1:-1;28647:163:0;;;;;:::i;:::-;;:::i;:::-;;13221:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15581:201;;;;;;;;;;-1:-1:-1;15581:201:0;;;;;:::i;:::-;;:::i;:::-;;;1512:14:1;;1505:22;1487:41;;1475:2;1460:18;15581:201:0;1347:187:1;25059:41:0;;;;;;;;;;-1:-1:-1;25059:41:0;;;;-1:-1:-1;;;;;25059:41:0;;;;;;-1:-1:-1;;;;;1730:32:1;;;1712:51;;1700:2;1685:18;25059:41:0;1539:230:1;14350:108:0;;;;;;;;;;-1:-1:-1;14438:12:0;;14350:108;;;1920:25:1;;;1908:2;1893:18;14350:108:0;1774:177:1;27496:727:0;;;;;;;;;;-1:-1:-1;27496:727:0;;;;;:::i;:::-;;:::i;28818:286::-;;;;;;;;;;-1:-1:-1;28818:286:0;;;;;:::i;:::-;;:::i;16362:261::-;;;;;;;;;;-1:-1:-1;16362:261:0;;;;;:::i;:::-;;:::i;30263:179::-;;;;;;;;;;-1:-1:-1;30263:179:0;;;;;:::i;:::-;;:::i;30450:232::-;;;;;;;;;;-1:-1:-1;30450:232:0;;;;;:::i;:::-;;:::i;14192:93::-;;;;;;;;;;-1:-1:-1;14192:93:0;;14275:2;4580:36:1;;4568:2;4553:18;14192:93:0;4438:184:1;17032:238:0;;;;;;;;;;-1:-1:-1;17032:238:0;;;;;:::i;:::-;;:::i;31452:148::-;;;;;;;;;;-1:-1:-1;31452:148:0;;;;;:::i;:::-;;:::i;25637:28::-;;;;;;;;;;-1:-1:-1;25637:28:0;;;;-1:-1:-1;;;;;25637:28:0;;;25183:26;;;;;;;;;;;;;;;;25795:53;;;;;;;;;;-1:-1:-1;25795:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25480:68;;;;;;;;;;-1:-1:-1;25480:68:0;;;;-1:-1:-1;;;;;25480:68:0;;;27083:405;;;;;;;;;;-1:-1:-1;27083:405:0;;;;;:::i;:::-;;:::i;28353:286::-;;;;;;;;;;-1:-1:-1;28353:286:0;;;;;:::i;:::-;;:::i;14521:127::-;;;;;;;;;;-1:-1:-1;14521:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;14622:18:0;14595:7;14622:18;;;;;;;;;;;;14521:127;6676:103;;;;;;;;;;;;;:::i;25555:75::-;;;;;;;;;;-1:-1:-1;25555:75:0;;;;-1:-1:-1;;;;;25555:75:0;;;25250:33;;;;;;;;;;;;;;;;28235:110;;;;;;;;;;-1:-1:-1;28235:110:0;;;;;:::i;:::-;;:::i;31272:172::-;;;;;;;;;;;;;:::i;25370:46::-;;;;;;;;;;;;;;;;6035:87;;;;;;;;;;-1:-1:-1;6108:6:0;;-1:-1:-1;;;;;6108:6:0;6035:87;;13440:104;;;;;;;;;;;;;:::i;30934:252::-;;;;;;;;;;-1:-1:-1;30934:252:0;;;;;:::i;:::-;;:::i;17773:436::-;;;;;;;;;;-1:-1:-1;17773:436:0;;;;;:::i;:::-;;:::i;14854:193::-;;;;;;;;;;-1:-1:-1;14854:193:0;;;;;:::i;:::-;;:::i;25423:50::-;;;;;;;;;;;;;;;;31194:70;;;;;;;;;;;;;:::i;25674:58::-;;;;;;;;;;-1:-1:-1;25674:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29708:367;;;;;;;;;;-1:-1:-1;29708:367:0;;;;;:::i;:::-;;:::i;29447:253::-;;;;;;;;;;-1:-1:-1;29447:253:0;;;;;:::i;:::-;;:::i;30690:236::-;;;;;;;;;;-1:-1:-1;30690:236:0;;;;;:::i;:::-;;:::i;25739:49::-;;;;;;;;;;-1:-1:-1;25739:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25216:27;;;;;;;;;;;;;;;;25142:32;;;;;;;;;;-1:-1:-1;25142:32:0;;;;-1:-1:-1;;;25142:32:0;;;;;;15110:151;;;;;;;;;;-1:-1:-1;15110:151:0;;;;;:::i;:::-;;:::i;25321:42::-;;;;;;;;;;;;;;;;30083:174;;;;;;;;;;-1:-1:-1;30083:174:0;;;;;:::i;:::-;;:::i;25292:22::-;;;;;;;;;;;;;;;;29112:327;;;;;;;;;;-1:-1:-1;29112:327:0;;;;;:::i;:::-;;:::i;6934:201::-;;;;;;;;;;-1:-1:-1;6934:201:0;;;;;:::i;:::-;;:::i;28647:163::-;5921:13;:11;:13::i;:::-;28743:3:::1;28730:9;:16;;28722:44;;;::::0;-1:-1:-1;;;28722:44:0;;6003:2:1;28722:44:0::1;::::0;::::1;5985:21:1::0;6042:2;6022:18;;;6015:30;-1:-1:-1;;;6061:18:1;;;6054:45;6116:18;;28722:44:0::1;;;;;;;;;28777:13;:25:::0;28647:163::o;13221:100::-;13275:13;13308:5;13301:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13221:100;:::o;15581:201::-;15664:4;4666:10;15720:32;4666:10;15736:7;15745:6;15720:8;:32::i;:::-;15770:4;15763:11;;;15581:201;;;;;:::o;27496:727::-;5921:13;:11;:13::i;:::-;27591:17:::1;27611:16;-1:-1:-1::0;;;;;27611:28:0::1;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27652:8;:20:::0;;-1:-1:-1;;;;;;27652:20:0::1;-1:-1:-1::0;;;;;27652:20:0;;::::1;::::0;;::::1;::::0;;;-1:-1:-1;27683:28:0;;;:17:::1;:28;::::0;;;;;;;:35;;-1:-1:-1;;27683:35:0::1;-1:-1:-1::0;27683:35:0;;::::1;::::0;;;27747:25;;-1:-1:-1;;;27747:25:0;;;;27652:20;;-1:-1:-1;;27683:17:0;;27747:23;::::1;::::0;::::1;::::0;:25:::1;::::0;;::::1;::::0;27683:28;;27747:25;;;;;;:23;:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27729:44:0::1;-1:-1:-1::0;;;;;27729:44:0::1;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;27844:4;27791:17;:50;27809:16;-1:-1:-1::0;;;;;27809:29:0::1;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27791:50:0::1;-1:-1:-1::0;;;;;27791:50:0::1;;;;;;;;;;;;;:57;;;;;;;;;;;;;;;;;;27909:4;27859:17;:47;27877:16;-1:-1:-1::0;;;;;27877:26:0::1;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27859:47:0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;27859:47:0;;;:54;;;::::1;;-1:-1:-1::0;;27859:54:0;;::::1;;::::0;;27924:31;;::::1;::::0;;:20:::1;:31:::0;;;;;;:38;;;;::::1;27859:54:::0;27924:38;;::::1;::::0;;;27994:25;;-1:-1:-1;;;27994:25:0;;;;27924:20;;-1:-1:-1;;27994:23:0;;::::1;::::0;::::1;::::0;:25:::1;::::0;;::::1;::::0;27859:47;;27994:25;;;;;:23;:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27973:47:0::1;-1:-1:-1::0;;;;;27973:47:0::1;;;;;;;;;;;;;:54;;;;;;;;;;;;;;;;;;28094:4;28038:20;:53;28059:16;-1:-1:-1::0;;;;;28059:29:0::1;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28038:53:0::1;-1:-1:-1::0;;;;;28038:53:0::1;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28162:4;28109:20;:50;28130:16;-1:-1:-1::0;;;;;28130:26:0::1;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28109:50:0;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;28109:50:0;:57;;-1:-1:-1;;28109:57:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;28182:33;1730:32:1;;;1712:51;;28182:33:0::1;::::0;1685:18:1;28182:33:0::1;;;;;;;;27580:643;27496:727:::0;:::o;28818:286::-;5921:13;:11;:13::i;:::-;-1:-1:-1;;;;;28904:24:0;::::1;28896:64;;;::::0;-1:-1:-1;;;28896:64:0;;6988:2:1;28896:64:0::1;::::0;::::1;6970:21:1::0;7027:2;7007:18;;;7000:30;7066:29;7046:18;;;7039:57;7113:18;;28896:64:0::1;6786:351:1::0;28896:64:0::1;-1:-1:-1::0;;;;;28971:29:0::1;;::::0;;;:17:::1;:29;::::0;;;;;;;:36;;29003:4:::1;-1:-1:-1::0;;28971:36:0;;::::1;::::0;::::1;::::0;;;29018:20:::1;:32:::0;;;;;:39;;;;::::1;::::0;;::::1;::::0;;29068:15:::1;:28:::0;;-1:-1:-1;;;;;;29068:28:0::1;::::0;;::::1;::::0;;28818:286::o;16362:261::-;16459:4;4666:10;16517:38;16533:4;4666:10;16548:6;16517:15;:38::i;:::-;16566:27;16576:4;16582:2;16586:6;16566:9;:27::i;:::-;-1:-1:-1;16611:4:0;;16362:261;-1:-1:-1;;;;16362:261:0:o;30263:179::-;5921:13;:11;:13::i;:::-;30358:12:::1;30348:7;:22;30340:58;;;::::0;-1:-1:-1;;;30340:58:0;;7344:2:1;30340:58:0::1;::::0;::::1;7326:21:1::0;7383:2;7363:18;;;7356:30;7422:25;7402:18;;;7395:53;7465:18;;30340:58:0::1;7142:347:1::0;30340:58:0::1;30409:15;:25:::0;30263:179::o;30450:232::-;5921:13;:11;:13::i;:::-;30566:9:::1;30562:113;30585:8;:15;30581:1;:19;30562:113;;;30655:8;30622:17;:30;30640:8;30649:1;30640:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;30622:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;30622:30:0;:41;;-1:-1:-1;;30622:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30602:3;::::1;::::0;::::1;:::i;:::-;;;;30562:113;;;;30450:232:::0;;:::o;17032:238::-;17120:4;4666:10;17176:64;4666:10;17192:7;17229:10;17201:25;4666:10;17192:7;17201:9;:25::i;:::-;:38;;;;:::i;:::-;17176:8;:64::i;31452:148::-;31521:8;;-1:-1:-1;;;;;31521:8:0;31507:10;:22;31499:57;;;;-1:-1:-1;;;31499:57:0;;8230:2:1;31499:57:0;;;8212:21:1;8269:2;8249:18;;;8242:30;-1:-1:-1;;;8288:18:1;;;8281:52;8350:18;;31499:57:0;8028:346:1;31499:57:0;31567:25;31573:10;31585:6;31567:5;:25::i;:::-;31452:148;:::o;27083:405::-;5921:13;:11;:13::i;:::-;27194:15:::1;::::0;-1:-1:-1;;;;;27194:15:0;;::::1;27172:38:::0;;::::1;::::0;27164:86:::1;;;::::0;-1:-1:-1;;;27164:86:0;;8581:2:1;27164:86:0::1;::::0;::::1;8563:21:1::0;8620:2;8600:18;;;8593:30;8659:34;8639:18;;;8632:62;-1:-1:-1;;;8710:18:1;;;8703:33;8753:19;;27164:86:0::1;8379:399:1::0;27164:86:0::1;27261:15;:48:::0;;-1:-1:-1;;;;;;27261:48:0::1;-1:-1:-1::0;;;;;27261:48:0;::::1;::::0;;::::1;::::0;;;27363:25:::1;::::0;;-1:-1:-1;;;27363:25:0;;;;-1:-1:-1;;27261:48:0;27363:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;27261:48;27363:25:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;27345:55:0::1;;27409:4;27416:15;;;;;;;;;-1:-1:-1::0;;;;;27416:15:0::1;-1:-1:-1::0;;;;;27416:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27345:94;::::0;-1:-1:-1;;;;;;27345:94:0::1;::::0;;;;;;-1:-1:-1;;;;;9013:15:1;;;27345:94:0::1;::::0;::::1;8995:34:1::0;9065:15;;9045:18;;;9038:43;8930:18;;27345:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27450:13;:30:::0;;-1:-1:-1;;;;;;27450:30:0::1;-1:-1:-1::0;;;;;27450:30:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;27083:405:0:o;28353:286::-;5921:13;:11;:13::i;:::-;28450:2:::1;28439:7;:13;;28431:43;;;::::0;-1:-1:-1;;;28431:43:0;;9294:2:1;28431:43:0::1;::::0;::::1;9276:21:1::0;9333:2;9313:18;;;9306:30;-1:-1:-1;;;9352:18:1;;;9345:47;9409:18;;28431:43:0::1;9092:341:1::0;28431:43:0::1;28505:2;28493:8;:14;;28485:45;;;::::0;-1:-1:-1;;;28485:45:0;;9640:2:1;28485:45:0::1;::::0;::::1;9622:21:1::0;9679:2;9659:18;;;9652:30;-1:-1:-1;;;9698:18:1;;;9691:48;9756:18;;28485:45:0::1;9438:342:1::0;28485:45:0::1;28541:6;:16:::0;;;28568:7:::1;:18:::0;;;28602:29:::1;::::0;;9959:25:1;;;10015:2;10000:18;;9993:34;;;28602:29:0::1;::::0;9932:18:1;28602:29:0::1;9785:248:1::0;6676:103:0;5921:13;:11;:13::i;:::-;6741:30:::1;6768:1;6741:18;:30::i;:::-;6676:103::o:0;28235:110::-;5921:13;:11;:13::i;:::-;28311:14:::1;:26:::0;28235:110::o;31272:172::-;5921:13;:11;:13::i;:::-;31336:12:::1;::::0;-1:-1:-1;;;31336:12:0;::::1;;;31335:13;31327:49;;;::::0;-1:-1:-1;;;31327:49:0;;10240:2:1;31327:49:0::1;::::0;::::1;10222:21:1::0;10279:2;10259:18;;;10252:30;10318:25;10298:18;;;10291:53;10361:18;;31327:49:0::1;10038:347:1::0;31327:49:0::1;31387:12;:19:::0;;-1:-1:-1;;;;31387:19:0::1;-1:-1:-1::0;;;31387:19:0::1;::::0;;31422:14:::1;::::0;::::1;::::0;31387:19;;31422:14:::1;31272:172::o:0;13440:104::-;13496:13;13529:7;13522:14;;;;;:::i;30934:252::-;5921:13;:11;:13::i;:::-;31043::::1;::::0;-1:-1:-1;;;;;31043:13:0;;::::1;31035:21:::0;;::::1;::::0;31027:99:::1;;;::::0;-1:-1:-1;;;31027:99:0;;10592:2:1;31027:99:0::1;::::0;::::1;10574:21:1::0;10631:2;10611:18;;;10604:30;10670:34;10650:18;;;10643:62;10741:34;10721:18;;;10714:62;-1:-1:-1;;;10792:19:1;;;10785:32;10834:19;;31027:99:0::1;10390:469:1::0;31027:99:0::1;31137:41;31166:4;31172:5;31137:28;:41::i;:::-;30934:252:::0;;:::o;17773:436::-;17866:4;4666:10;17866:4;17949:25;4666:10;17966:7;17949:9;:25::i;:::-;17922:52;;18013:15;17993:16;:35;;17985:85;;;;-1:-1:-1;;;17985:85:0;;11066:2:1;17985:85:0;;;11048:21:1;11105:2;11085:18;;;11078:30;11144:34;11124:18;;;11117:62;-1:-1:-1;;;11195:18:1;;;11188:35;11240:19;;17985:85:0;10864:401:1;17985:85:0;18106:60;18115:5;18122:7;18150:15;18131:16;:34;18106:8;:60::i;14854:193::-;14933:4;4666:10;14989:28;4666:10;15006:2;15010:6;14989:9;:28::i;31194:70::-;5921:13;:11;:13::i;:::-;31244:12:::1;:10;:12::i;29708:367::-:0;5921:13;:11;:13::i;:::-;-1:-1:-1;;;;;29803:21:0;::::1;29795:62;;;::::0;-1:-1:-1;;;29795:62:0;;11472:2:1;29795:62:0::1;::::0;::::1;11454:21:1::0;11511:2;11491:18;;;11484:30;11550;11530:18;;;11523:58;11598:18;;29795:62:0::1;11270:352:1::0;29795:62:0::1;-1:-1:-1::0;;;;;29876:29:0;::::1;;::::0;;;:20:::1;:29;::::0;;;;;:41;::::1;;:29;::::0;;::::1;:41;;::::0;29868:96:::1;;;::::0;-1:-1:-1;;;29868:96:0;;11829:2:1;29868:96:0::1;::::0;::::1;11811:21:1::0;11868:2;11848:18;;;11841:30;11907:34;11887:18;;;11880:62;-1:-1:-1;;;11958:18:1;;;11951:40;12008:19;;29868:96:0::1;11627:406:1::0;29868:96:0::1;-1:-1:-1::0;;;;;29975:29:0;::::1;;::::0;;;:20:::1;:29;::::0;;;;;;;;:40;;-1:-1:-1;;29975:40:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30031:36;;1487:41:1;;;30031:36:0::1;::::0;1460:18:1;30031:36:0::1;;;;;;;29708:367:::0;;:::o;29447:253::-;5921:13;:11;:13::i;:::-;-1:-1:-1;;;;;29541:21:0;::::1;29533:62;;;::::0;-1:-1:-1;;;29533:62:0;;11472:2:1;29533:62:0::1;::::0;::::1;11454:21:1::0;11511:2;11491:18;;;11484:30;11550;11530:18;;;11523:58;11598:18;;29533:62:0::1;11270:352:1::0;29533:62:0::1;-1:-1:-1::0;;;;;29606:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;29606:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29659:33;;12206:51:1;;;12273:18;;;12266:50;29659:33:0::1;::::0;12179:18:1;29659:33:0::1;12038:284:1::0;30690:236:0;5921:13;:11;:13::i;:::-;30807:9:::1;30803:116;30826:8;:15;30822:1;:19;30803:116;;;30899:8;30863:20;:33;30884:8;30893:1;30884:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;30863:33:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;30863:33:0;:44;;-1:-1:-1;;30863:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30843:3;::::1;::::0;::::1;:::i;:::-;;;;30803:116;;15110:151:::0;-1:-1:-1;;;;;15226:18:0;;;15199:7;15226:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15110:151::o;30083:174::-;5921:13;:11;:13::i;:::-;30172:12:::1;30162:7;:22;30154:63;;;::::0;-1:-1:-1;;;30154:63:0;;12529:2:1;30154:63:0::1;::::0;::::1;12511:21:1::0;12568:2;12548:18;;;12541:30;12607;12587:18;;;12580:58;12655:18;;30154:63:0::1;12327:352:1::0;30154:63:0::1;30228:11;:21:::0;30083:174::o;29112:327::-;5921:13;:11;:13::i;:::-;-1:-1:-1;;;;;29193:26:0;::::1;29185:59;;;::::0;-1:-1:-1;;;29185:59:0;;12886:2:1;29185:59:0::1;::::0;::::1;12868:21:1::0;12925:2;12905:18;;;12898:30;-1:-1:-1;;;12944:18:1;;;12937:50;13004:18;;29185:59:0::1;12684:344:1::0;29185:59:0::1;-1:-1:-1::0;;;;;29255:31:0;::::1;;::::0;;;:17:::1;:31;::::0;;;;;;;:38;;29289:4:::1;-1:-1:-1::0;;29255:38:0;;::::1;::::0;::::1;::::0;;;29304:20:::1;:34:::0;;;;;;:41;;;;::::1;;::::0;;;29356:8:::1;:23:::0;;-1:-1:-1;;;;;;29356:23:0::1;::::0;::::1;::::0;;29395:36;;1712:51:1;;;29395:36:0::1;::::0;1685:18:1;29395:36:0::1;;;;;;;29112:327:::0;:::o;6934:201::-;5921:13;:11;:13::i;:::-;-1:-1:-1;;;;;7023:22:0;::::1;7015:73;;;::::0;-1:-1:-1;;;7015:73:0;;13235:2:1;7015:73:0::1;::::0;::::1;13217:21:1::0;13274:2;13254:18;;;13247:30;13313:34;13293:18;;;13286:62;-1:-1:-1;;;13364:18:1;;;13357:36;13410:19;;7015:73:0::1;13033:402:1::0;7015:73:0::1;7099:28;7118:8;7099:18;:28::i;6200:132::-:0;6108:6;;-1:-1:-1;;;;;6108:6:0;4666:10;6264:23;6256:68;;;;-1:-1:-1;;;6256:68:0;;13642:2:1;6256:68:0;;;13624:21:1;;;13661:18;;;13654:30;13720:34;13700:18;;;13693:62;13772:18;;6256:68:0;13440:356:1;21766:346:0;-1:-1:-1;;;;;21868:19:0;;21860:68;;;;-1:-1:-1;;;21860:68:0;;14003:2:1;21860:68:0;;;13985:21:1;14042:2;14022:18;;;14015:30;14081:34;14061:18;;;14054:62;-1:-1:-1;;;14132:18:1;;;14125:34;14176:19;;21860:68:0;13801:400:1;21860:68:0;-1:-1:-1;;;;;21947:21:0;;21939:68;;;;-1:-1:-1;;;21939:68:0;;14408:2:1;21939:68:0;;;14390:21:1;14447:2;14427:18;;;14420:30;14486:34;14466:18;;;14459:62;-1:-1:-1;;;14537:18:1;;;14530:32;14579:19;;21939:68:0;14206:398:1;21939:68:0;-1:-1:-1;;;;;22020:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22072:32;;1920:25:1;;;22072:32:0;;1893:18:1;22072:32:0;;;;;;;21766:346;;;:::o;22403:419::-;22504:24;22531:25;22541:5;22548:7;22531:9;:25::i;:::-;22504:52;;-1:-1:-1;;22571:16:0;:37;22567:248;;22653:6;22633:16;:26;;22625:68;;;;-1:-1:-1;;;22625:68:0;;14811:2:1;22625:68:0;;;14793:21:1;14850:2;14830:18;;;14823:30;14889:31;14869:18;;;14862:59;14938:18;;22625:68:0;14609:353:1;22625:68:0;22737:51;22746:5;22753:7;22781:6;22762:16;:25;22737:8;:51::i;:::-;22493:329;22403:419;;;:::o;31612:1986::-;-1:-1:-1;;;;;31765:20:0;;31757:70;;;;-1:-1:-1;;;31757:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31846:23:0;;31838:71;;;;-1:-1:-1;;;31838:71:0;;;;;;;:::i;:::-;31925:6;31935:1;31925:11;31922:101;;31953:37;31969:6;31977:9;31988:1;31953:15;:37::i;31922:101::-;6108:6;;-1:-1:-1;;;;;32046:17:0;;;6108:6;;32046:17;;;;:41;;-1:-1:-1;6108:6:0;;-1:-1:-1;;;;;32067:20:0;;;6108:6;;32067:20;;32046:41;32042:504;;;-1:-1:-1;;;;;32108:28:0;;;;;;:20;:28;;;;;;;;32107:29;:65;;;;-1:-1:-1;;;;;;32141:31:0;;;;;;:20;:31;;;;;;;;32140:32;32107:65;32104:431;;;32200:12;;-1:-1:-1;;;32200:12:0;;;;32192:44;;;;-1:-1:-1;;;32192:44:0;;15979:2:1;32192:44:0;;;15961:21:1;16018:2;15998:18;;;15991:30;-1:-1:-1;;;16037:18:1;;;16030:50;16097:18;;32192:44:0;15777:344:1;32192:44:0;32272:11;;32263:6;:20;32255:73;;;;-1:-1:-1;;;32255:73:0;;16328:2:1;32255:73:0;;;16310:21:1;16367:2;16347:18;;;16340:30;16406:34;16386:18;;;16379:62;-1:-1:-1;;;16457:18:1;;;16450:38;16505:19;;32255:73:0;16126:404:1;32255:73:0;32364:13;;-1:-1:-1;;;;;32351:26:0;;;32364:13;;32351:26;32347:173;;32442:15;;32433:6;32410:20;32420:9;-1:-1:-1;;;;;14622:18:0;14595:7;14622:18;;;;;;;;;;;;14521:127;32410:20;:29;;;;:::i;:::-;:47;32402:98;;;;-1:-1:-1;;;32402:98:0;;16737:2:1;32402:98:0;;;16719:21:1;16776:2;16756:18;;;16749:30;16815:34;16795:18;;;16788:62;-1:-1:-1;;;16866:18:1;;;16859:36;16912:19;;32402:98:0;16535:402:1;32402:98:0;32613:4;32558:17;14622:18;;;;;;;;;;;32578:14;;:41;;32636:38;;;;-1:-1:-1;32666:8:0;;-1:-1:-1;;;32666:8:0;;;;32665:9;32636:38;:89;;;;-1:-1:-1;;;;;;32692:33:0;;;;;;:25;:33;;;;;;;;32691:34;32636:89;:123;;;;-1:-1:-1;6108:6:0;;-1:-1:-1;;;;;32742:17:0;;;6108:6;;32742:17;;32636:123;:160;;;;-1:-1:-1;6108:6:0;;-1:-1:-1;;;;;32776:20:0;;;6108:6;;32776:20;;32636:160;32632:225;;;32833:12;:10;:12::i;:::-;32886:8;;-1:-1:-1;;;;;32908:25:0;;32870:12;32908:25;;;:17;:25;;;;;;32886:8;-1:-1:-1;;;32886:8:0;;;;;32885:9;;32908:25;;:57;;-1:-1:-1;;;;;;32937:28:0;;;;;;:17;:28;;;;;;;;32908:57;32905:104;;;-1:-1:-1;32992:5:0;32905:104;33024:14;33053:7;33049:284;;;-1:-1:-1;;;;;33089:36:0;;;;;;:25;:36;;;;;;;;33085:237;;;33177:3;33167:7;;33158:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;33146:34;;33085:237;;;-1:-1:-1;;;;;33219:33:0;;;;;;:25;:33;;;;;;;;33215:107;;;33303:3;33294:6;;33285;:15;;;;:::i;:::-;:21;;;;:::i;:::-;33273:33;;33215:107;33353:13;;33349:187;;33409:9;33396:10;;:22;;;;:::i;:::-;33383:10;:35;33442:18;33451:9;33442:6;:18;:::i;:::-;33433:27;;33475:49;33491:6;33507:4;33514:9;33475:15;:49::i;:::-;33548:42;33564:6;33572:9;33583:6;33548:15;:42::i;:::-;31734:1864;;;31612:1986;;;:::o;20653:675::-;-1:-1:-1;;;;;20737:21:0;;20729:67;;;;-1:-1:-1;;;20729:67:0;;17672:2:1;20729:67:0;;;17654:21:1;17711:2;17691:18;;;17684:30;17750:34;17730:18;;;17723:62;-1:-1:-1;;;17801:18:1;;;17794:31;17842:19;;20729:67:0;17470:397:1;20729:67:0;-1:-1:-1;;;;;20896:18:0;;20871:22;20896:18;;;;;;;;;;;20933:24;;;;20925:71;;;;-1:-1:-1;;;20925:71:0;;18074:2:1;20925:71:0;;;18056:21:1;18113:2;18093:18;;;18086:30;18152:34;18132:18;;;18125:62;-1:-1:-1;;;18203:18:1;;;18196:32;18245:19;;20925:71:0;17872:398:1;20925:71:0;-1:-1:-1;;;;;21032:18:0;;:9;:18;;;;;;;;;;;21053:23;;;21032:44;;21171:12;:22;;;;;;;21222:37;1920:25:1;;;21032:9:0;;:18;21222:37;;1893:18:1;21222:37:0;;;;;;;30562:113:::1;30450:232:::0;;:::o;7295:191::-;7388:6;;;-1:-1:-1;;;;;7405:17:0;;;-1:-1:-1;;;;;;7405:17:0;;;;;;;7438:40;;7388:6;;;7405:17;7388:6;;7438:40;;7369:16;;7438:40;7358:128;7295:191;:::o;35188:250::-;-1:-1:-1;;;;;35279:31:0;;;;;;:25;:31;;;;;;:40;;;:31;;;;:40;;;35271:109;;;;-1:-1:-1;;;35271:109:0;;18477:2:1;35271:109:0;;;18459:21:1;18516:2;18496:18;;;18489:30;18555:34;18535:18;;;18528:62;18626:26;18606:18;;;18599:54;18670:19;;35271:109:0;18275:420:1;35271:109:0;-1:-1:-1;;;;;35391:31:0;;;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;35391:39:0;;;;;;;;;;35188:250::o;33606:1094::-;33656:8;;-1:-1:-1;;;;;33656:8:0;:22;;;;:55;;-1:-1:-1;33682:15:0;;-1:-1:-1;;;;;33682:15:0;:29;;33656:55;33648:94;;;;-1:-1:-1;;;33648:94:0;;18902:2:1;33648:94:0;;;18884:21:1;18941:2;18921:18;;;18914:30;18980:28;18960:18;;;18953:56;19026:18;;33648:94:0;18700:350:1;33648:94:0;33772:10;;33797:15;;33793:900;;33829:8;:15;;-1:-1:-1;;;;33829:15:0;-1:-1:-1;;;33829:15:0;;;33863:29;33880:11;33863:16;:29::i;:::-;33938:4;14595:7;14622:18;;;;;;;;;;;33907:10;:37;34047:13;;33976:21;;14595:7;34064:3;;34035:25;;33976:21;34035:25;:::i;:::-;34034:33;;;;:::i;:::-;34012:55;-1:-1:-1;34087:18:0;;34083:208;;34161:8;;34153:51;;34127:20;;-1:-1:-1;;;;;34161:8:0;;34184:14;;34127:20;34153:51;34127:20;34153:51;34184:14;34161:8;34153:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34126:78;;;34231:15;34223:52;;;;-1:-1:-1;;;34223:52:0;;19467:2:1;34223:52:0;;;19449:21:1;19506:2;19486:18;;;19479:30;19545:26;19525:18;;;19518:54;19589:18;;34223:52:0;19265:348:1;34223:52:0;34107:184;34083:208;34305:20;34328:26;34340:14;34328:9;:26;:::i;:::-;34305:49;-1:-1:-1;34373:19:0;;34369:220;;34449:15;;34441:59;;34414:21;;-1:-1:-1;;;;;34449:15:0;;34479;;34414:21;34441:59;34414:21;34441:59;34479:15;34449;34441:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34413:87;;;34527:16;34519:54;;;;-1:-1:-1;;;34519:54:0;;19820:2:1;34519:54:0;;;19802:21:1;19859:2;19839:18;;;19832:30;19898:27;19878:18;;;19871:55;19943:18;;34519:54:0;19618:349:1;34519:54:0;34394:195;34369:220;34603:8;:16;;-1:-1:-1;;;;34603:16:0;;;34648:33;;;9959:25:1;;;10015:2;10000:18;;9993:34;;;34648:33:0;;9932:18:1;34648:33:0;;;;;;;33814:879;;;33637:1063;33606:1094::o;18679:806::-;-1:-1:-1;;;;;18776:18:0;;18768:68;;;;-1:-1:-1;;;18768:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18855:16:0;;18847:64;;;;-1:-1:-1;;;18847:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18997:15:0;;18975:19;18997:15;;;;;;;;;;;19031:21;;;;19023:72;;;;-1:-1:-1;;;19023:72:0;;20174:2:1;19023:72:0;;;20156:21:1;20213:2;20193:18;;;20186:30;20252:34;20232:18;;;20225:62;-1:-1:-1;;;20303:18:1;;;20296:36;20349:19;;19023:72:0;19972:402:1;19023:72:0;-1:-1:-1;;;;;19131:15:0;;;:9;:15;;;;;;;;;;;19149:20;;;19131:38;;19349:13;;;;;;;;;;:23;;;;;;19401:26;;1920:25:1;;;19349:13:0;;19401:26;;1893:18:1;19401:26:0;;;;;;;19440:37;30450:232;34708:472;34798:16;;;34812:1;34798:16;;;;;;;;34774:21;;34798:16;;;;;;;;;;-1:-1:-1;34798:16:0;34774:40;;34843:4;34825;34830:1;34825:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34825:23:0;;;:7;;;;;;;;;;:23;;;;34869:15;;:22;;;-1:-1:-1;;;34869:22:0;;;;:15;;;;;:20;;:22;;;;;34825:7;;34869:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34859:4;34864:1;34859:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34859:32:0;;;:7;;;;;;;;;:32;34934:15;;34902:62;;34919:4;;34934:15;34952:11;34902:8;:62::i;:::-;34975:15;;:197;;-1:-1:-1;;;34975:197:0;;-1:-1:-1;;;;;34975:15:0;;;;:66;;:197;;35056:11;;34975:15;;35099:4;;35126;;35146:15;;34975:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:548::-;311:4;340:2;369;358:9;351:21;401:6;395:13;444:6;439:2;428:9;424:18;417:34;469:1;479:140;493:6;490:1;487:13;479:140;;;588:14;;;584:23;;578:30;554:17;;;573:2;550:26;543:66;508:10;;479:140;;;483:3;668:1;663:2;654:6;643:9;639:22;635:31;628:42;738:2;731;727:7;722:2;714:6;710:15;706:29;695:9;691:45;687:54;679:62;;;;199:548;;;;:::o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:134;956:20;;985:31;956:20;985:31;:::i;:::-;888:134;;;:::o;1027:315::-;1095:6;1103;1156:2;1144:9;1135:7;1131:23;1127:32;1124:52;;;1172:1;1169;1162:12;1124:52;1211:9;1198:23;1230:31;1255:5;1230:31;:::i;:::-;1280:5;1332:2;1317:18;;;;1304:32;;-1:-1:-1;;;1027:315:1:o;1956:271::-;2039:6;2092:2;2080:9;2071:7;2067:23;2063:32;2060:52;;;2108:1;2105;2098:12;2060:52;2147:9;2134:23;2166:31;2191:5;2166:31;:::i;:::-;2216:5;1956:271;-1:-1:-1;;;1956:271:1:o;2484:456::-;2561:6;2569;2577;2630:2;2618:9;2609:7;2605:23;2601:32;2598:52;;;2646:1;2643;2636:12;2598:52;2685:9;2672:23;2704:31;2729:5;2704:31;:::i;:::-;2754:5;-1:-1:-1;2811:2:1;2796:18;;2783:32;2824:33;2783:32;2824:33;:::i;:::-;2484:456;;2876:7;;-1:-1:-1;;;2930:2:1;2915:18;;;;2902:32;;2484:456::o;2945:127::-;3006:10;3001:3;2997:20;2994:1;2987:31;3037:4;3034:1;3027:15;3061:4;3058:1;3051:15;3077:160;3142:20;;3198:13;;3191:21;3181:32;;3171:60;;3227:1;3224;3217:12;3242:1191;3332:6;3340;3393:2;3381:9;3372:7;3368:23;3364:32;3361:52;;;3409:1;3406;3399:12;3361:52;3449:9;3436:23;3478:18;3519:2;3511:6;3508:14;3505:34;;;3535:1;3532;3525:12;3505:34;3573:6;3562:9;3558:22;3548:32;;3618:7;3611:4;3607:2;3603:13;3599:27;3589:55;;3640:1;3637;3630:12;3589:55;3676:2;3663:16;3698:4;3721:2;3717;3714:10;3711:36;;;3727:18;;:::i;:::-;3773:2;3770:1;3766:10;3805:2;3799:9;3868:2;3864:7;3859:2;3855;3851:11;3847:25;3839:6;3835:38;3923:6;3911:10;3908:22;3903:2;3891:10;3888:18;3885:46;3882:72;;;3934:18;;:::i;:::-;3970:2;3963:22;4020:18;;;4054:15;;;;-1:-1:-1;4096:11:1;;;4092:20;;;4124:19;;;4121:39;;;4156:1;4153;4146:12;4121:39;4180:11;;;;4200:148;4216:6;4211:3;4208:15;4200:148;;;4282:23;4301:3;4282:23;:::i;:::-;4270:36;;4233:12;;;;4326;;;;4200:148;;;4367:6;-1:-1:-1;4392:35:1;;-1:-1:-1;4408:18:1;;;4392:35;:::i;:::-;4382:45;;;;;;3242:1191;;;;;:::o;4835:248::-;4903:6;4911;4964:2;4952:9;4943:7;4939:23;4935:32;4932:52;;;4980:1;4977;4970:12;4932:52;-1:-1:-1;;5003:23:1;;;5073:2;5058:18;;;5045:32;;-1:-1:-1;4835:248:1:o;5088:315::-;5153:6;5161;5214:2;5202:9;5193:7;5189:23;5185:32;5182:52;;;5230:1;5227;5220:12;5182:52;5269:9;5256:23;5288:31;5313:5;5288:31;:::i;:::-;5338:5;-1:-1:-1;5362:35:1;5393:2;5378:18;;5362:35;:::i;:::-;5352:45;;5088:315;;;;;:::o;5408:388::-;5476:6;5484;5537:2;5525:9;5516:7;5512:23;5508:32;5505:52;;;5553:1;5550;5543:12;5505:52;5592:9;5579:23;5611:31;5636:5;5611:31;:::i;:::-;5661:5;-1:-1:-1;5718:2:1;5703:18;;5690:32;5731:33;5690:32;5731:33;:::i;:::-;5783:7;5773:17;;;5408:388;;;;;:::o;6145:380::-;6224:1;6220:12;;;;6267;;;6288:61;;6342:4;6334:6;6330:17;6320:27;;6288:61;6395:2;6387:6;6384:14;6364:18;6361:38;6358:161;;6441:10;6436:3;6432:20;6429:1;6422:31;6476:4;6473:1;6466:15;6504:4;6501:1;6494:15;6358:161;;6145:380;;;:::o;6530:251::-;6600:6;6653:2;6641:9;6632:7;6628:23;6624:32;6621:52;;;6669:1;6666;6659:12;6621:52;6701:9;6695:16;6720:31;6745:5;6720:31;:::i;7494:127::-;7555:10;7550:3;7546:20;7543:1;7536:31;7586:4;7583:1;7576:15;7610:4;7607:1;7600:15;7626:127;7687:10;7682:3;7678:20;7675:1;7668:31;7718:4;7715:1;7708:15;7742:4;7739:1;7732:15;7758:135;7797:3;7818:17;;;7815:43;;7838:18;;:::i;:::-;-1:-1:-1;7885:1:1;7874:13;;7758:135::o;7898:125::-;7963:9;;;7984:10;;;7981:36;;;7997:18;;:::i;14967:401::-;15169:2;15151:21;;;15208:2;15188:18;;;15181:30;15247:34;15242:2;15227:18;;15220:62;-1:-1:-1;;;15313:2:1;15298:18;;15291:35;15358:3;15343:19;;14967:401::o;15373:399::-;15575:2;15557:21;;;15614:2;15594:18;;;15587:30;15653:34;15648:2;15633:18;;15626:62;-1:-1:-1;;;15719:2:1;15704:18;;15697:33;15762:3;15747:19;;15373:399::o;16942:168::-;17015:9;;;17046;;17063:15;;;17057:22;;17043:37;17033:71;;17084:18;;:::i;17115:217::-;17155:1;17181;17171:132;;17225:10;17220:3;17216:20;17213:1;17206:31;17260:4;17257:1;17250:15;17288:4;17285:1;17278:15;17171:132;-1:-1:-1;17317:9:1;;17115:217::o;17337:128::-;17404:9;;;17425:11;;;17422:37;;;17439:18;;:::i;20379:980::-;20641:4;20689:3;20678:9;20674:19;20720:6;20709:9;20702:25;20746:2;20784:6;20779:2;20768:9;20764:18;20757:34;20827:3;20822:2;20811:9;20807:18;20800:31;20851:6;20886;20880:13;20917:6;20909;20902:22;20955:3;20944:9;20940:19;20933:26;;20994:2;20986:6;20982:15;20968:29;;21015:1;21025:195;21039:6;21036:1;21033:13;21025:195;;;21104:13;;-1:-1:-1;;;;;21100:39:1;21088:52;;21195:15;;;;21160:12;;;;21136:1;21054:9;21025:195;;;-1:-1:-1;;;;;;;21276:32:1;;;;21271:2;21256:18;;21249:60;-1:-1:-1;;;21340:3:1;21325:19;21318:35;21237:3;20379:980;-1:-1:-1;;;20379:980:1:o

Swarm Source

ipfs://75154da9527f733b2939b3a94cffcce042ec5fce1d9fbbf6fca39b19b9aa6ce6
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.