ETH Price: $3,168.12 (+4.32%)

Token

Alpha Coin Tech (ACT)
 

Overview

Max Total Supply

1,000,000,000,000 ACT

Holders

55

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000003122784226 ACT

Value
$0.00
0x517d72ae57e4ccacaa7a9f3bfff3c97613a5c6b0
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:
AlphaCoin

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-30
*/

// SPDX-License-Identifier: MIT
// 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.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

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

// OpenZeppelin Contracts (last updated v4.6.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.7.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

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

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

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

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

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

    /**
     * @dev 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: @openzeppelin/contracts/security/Pausable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

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

pragma solidity ^0.8.0;


/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);
    }
}

// File: contracts/interfaces/IUniswap.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

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

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(uint256 amountA, uint256 reserveA, uint256 reserveB) external pure returns (uint256 amountB);

    function getAmountOut(uint256 amountIn, uint256 reserveIn, uint256 reserveOut) external pure returns (uint256 amountOut);

    function getAmountIn(uint256 amountOut, uint256 reserveIn, uint256 reserveOut) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    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;
}

// File: contracts/MixToken.sol


pragma solidity ^0.8.0;



contract AlphaCoin is Context, ERC20Burnable, ERC20Pausable, Ownable {
    uint256 public constant MAX_SUPPLY = 1_000_000_000_000 ether;

    address public addressCommunity;
    uint256 public amountSettleFee;

    IUniswapV2Router02 public router;
    address public addressPair;

    mapping(address => bool) public addressesNoFee;

    // max - 10000
    uint256 public rateSell = 300;
    uint256 public rateBuy = 300;

    bool private feeSwaping = false;

    constructor() ERC20("Alpha Coin Tech", "ACT") {
        addressCommunity = 0x38Bc2402c15FC293B137036d80149bbc85CC7a1F;
        amountSettleFee = 200000000000000000000000;

        _mint(msg.sender, MAX_SUPPLY);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function init(address addrRouter) public onlyOwner {
        router = IUniswapV2Router02(addrRouter);
        addressPair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

        _approve(address(this), address(router), type(uint256).max);

        addressesNoFee[address(this)] = true;
        addressesNoFee[address(router)] = true;
        addressesNoFee[address(0)] = true;
        addressesNoFee[owner()] = true;
    }

    function updateRate(uint256 _rateSell, uint256 _rateBuy) external onlyOwner {
        rateSell = _rateSell;
        rateBuy = _rateBuy;
    }

    function updateAddressCommunity(address _addressCommunity, uint256 _amountSettleFee) external {
        require(msg.sender == addressCommunity, "You don't have permission");
        addressCommunity = _addressCommunity;
        amountSettleFee = _amountSettleFee;
    }

    function updateAddressesNoFee(address addr, bool enable) external onlyOwner {
        addressesNoFee[addr] = enable;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
        require(!paused() || addressesNoFee[from] , "ERC20Pausable: token transfer while paused");
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        if (feeSwaping || (addressesNoFee[sender] || addressesNoFee[recipient])) {
            super._transfer(sender, recipient, amount);
            return;
        }

        uint256 bal = balanceOf(address(this));
        if (bal > amountSettleFee && recipient == addressPair) {
            feeSwaping = true;
            swapFee(bal, addressCommunity);
            feeSwaping = false;
        }

        uint256 amountReal = amount;
        uint256 amountFee = 0;

        if (sender == addressPair) {
            amountFee = _trimAmount(amount, rateBuy);
        } else if (recipient == addressPair) {
            amountFee = _trimAmount(amount, rateSell);
        }
        require(amountReal > amountFee, "amount error");
        amountReal -= amountFee;

        super._transfer(sender, recipient, amountReal);

        if (amountFee > 0) {
            super._transfer(sender, address(this), amountFee);
        }
    }

    function _trimAmount(uint256 amount, uint256 rate) internal pure returns (uint256) {
        return (amount * rate) / 10000;
    }

    function swapFee(uint256 amount, address to) private {
        bool success;
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(amount, 0, path, to, block.timestamp);

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

    receive() external payable {}

    function withdrawToken(address _token) public onlyOwner {
        IERC20(_token).transfer(addressCommunity, IERC20(_token).balanceOf(address(this)));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressCommunity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressesNoFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountSettleFee","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":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[{"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":"addrRouter","type":"address"}],"name":"init","outputs":[],"stateMutability":"nonpayable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rateBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rateSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addressCommunity","type":"address"},{"internalType":"uint256","name":"_amountSettleFee","type":"uint256"}],"name":"updateAddressCommunity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"updateAddressesNoFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rateSell","type":"uint256"},{"internalType":"uint256","name":"_rateBuy","type":"uint256"}],"name":"updateRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405261012c600b5561012c600c556000600d60006101000a81548160ff0219169083151502179055503480156200003857600080fd5b506040518060400160405280600f81526020017f416c70686120436f696e205465636800000000000000000000000000000000008152506040518060400160405280600381526020017f41435400000000000000000000000000000000000000000000000000000000008152508160039081620000b6919062000754565b508060049081620000c8919062000754565b5050506000600560006101000a81548160ff02191690831515021790555062000106620000fa6200019160201b60201c565b6200019960201b60201c565b7338bc2402c15fc293b137036d80149bbc85cc7a1f600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550692a5a058fc295ed0000006007819055506200018b336c0c9f2c9cd04674edea400000006200025f60201b60201c565b62000a10565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c8906200089c565b60405180910390fd5b620002e560008383620003d760201b60201c565b8060026000828254620002f99190620008ed565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003509190620008ed565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003b791906200095b565b60405180910390a3620003d3600083836200049c60201b60201c565b5050565b620003ef838383620004a160201b620013231760201c565b620003ff620004be60201b60201c565b1580620004555750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b62000497576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048e90620009ee565b60405180910390fd5b505050565b505050565b620004b9838383620004d560201b620013331760201c565b505050565b6000600560009054906101000a900460ff16905090565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200055c57607f821691505b60208210810362000572576200057162000514565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005dc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200059d565b620005e886836200059d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006356200062f620006298462000600565b6200060a565b62000600565b9050919050565b6000819050919050565b620006518362000614565b6200066962000660826200063c565b848454620005aa565b825550505050565b600090565b6200068062000671565b6200068d81848462000646565b505050565b5b81811015620006b557620006a960008262000676565b60018101905062000693565b5050565b601f8211156200070457620006ce8162000578565b620006d9846200058d565b81016020851015620006e9578190505b62000701620006f8856200058d565b83018262000692565b50505b505050565b600082821c905092915050565b6000620007296000198460080262000709565b1980831691505092915050565b600062000744838362000716565b9150826002028217905092915050565b6200075f82620004da565b67ffffffffffffffff8111156200077b576200077a620004e5565b5b62000787825462000543565b62000794828285620006b9565b600060209050601f831160018114620007cc5760008415620007b7578287015190505b620007c3858262000736565b86555062000833565b601f198416620007dc8662000578565b60005b828110156200080657848901518255600182019150602085019450602081019050620007df565b8683101562000826578489015162000822601f89168262000716565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000884601f836200083b565b915062000891826200084c565b602082019050919050565b60006020820190508181036000830152620008b78162000875565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008fa8262000600565b9150620009078362000600565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200093f576200093e620008be565b5b828201905092915050565b620009558162000600565b82525050565b60006020820190506200097260008301846200094a565b92915050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6000620009d6602a836200083b565b9150620009e38262000978565b604082019050919050565b6000602082019050818103600083015262000a0981620009c7565b9050919050565b6134ab8062000a206000396000f3fe6080604052600436106101e75760003560e01c8063715018a611610102578063a9059cbb11610095578063ee2f5a4511610064578063ee2f5a45146106ed578063f2fde38b14610718578063f6359f4c14610741578063f887ea401461076c576101ee565b8063a9059cbb1461061f578063abeb5b1b1461065c578063cad9356314610687578063dd62ed3e146106b0576101ee565b806389476069116100d157806389476069146105635780638da5cb5b1461058c57806395d89b41146105b7578063a457c2d7146105e2576101ee565b8063715018a6146104e357806371d74429146104fa57806379cc6790146105235780638456cb591461054c576101ee565b806333f4406a1161017a57806342966c681161014957806342966c68146104275780635c975abb1461045057806368b058eb1461047b57806370a08231146104a6576101ee565b806333f4406a1461037f57806339509351146103aa5780633f4ba83a146103e7578063405abb41146103fe576101ee565b806319ab453c116101b657806319ab453c146102c357806323b872dd146102ec578063313ce5671461032957806332cb6b0c14610354576101ee565b806306fdde03146101f3578063095ea7b31461021e57806318160ddd1461025b57806318838e8214610286576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610797565b6040516102159190612388565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190612443565b610829565b604051610252919061249e565b60405180910390f35b34801561026757600080fd5b5061027061084c565b60405161027d91906124c8565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a891906124e3565b610856565b6040516102ba919061249e565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e591906124e3565b610876565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612510565b610c76565b604051610320919061249e565b60405180910390f35b34801561033557600080fd5b5061033e610ca5565b60405161034b919061257f565b60405180910390f35b34801561036057600080fd5b50610369610cae565b60405161037691906124c8565b60405180910390f35b34801561038b57600080fd5b50610394610cbf565b6040516103a191906125a9565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190612443565b610ce5565b6040516103de919061249e565b60405180910390f35b3480156103f357600080fd5b506103fc610d1c565b005b34801561040a57600080fd5b50610425600480360381019061042091906125c4565b610d2e565b005b34801561043357600080fd5b5061044e60048036038101906104499190612604565b610d48565b005b34801561045c57600080fd5b50610465610d5c565b604051610472919061249e565b60405180910390f35b34801561048757600080fd5b50610490610d73565b60405161049d91906124c8565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906124e3565b610d79565b6040516104da91906124c8565b60405180910390f35b3480156104ef57600080fd5b506104f8610dc1565b005b34801561050657600080fd5b50610521600480360381019061051c9190612443565b610dd5565b005b34801561052f57600080fd5b5061054a60048036038101906105459190612443565b610eb1565b005b34801561055857600080fd5b50610561610ed1565b005b34801561056f57600080fd5b5061058a600480360381019061058591906124e3565b610ee3565b005b34801561059857600080fd5b506105a1611008565b6040516105ae91906125a9565b60405180910390f35b3480156105c357600080fd5b506105cc611032565b6040516105d99190612388565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612443565b6110c4565b604051610616919061249e565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612443565b61113b565b604051610653919061249e565b60405180910390f35b34801561066857600080fd5b5061067161115e565b60405161067e91906124c8565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a9919061265d565b611164565b005b3480156106bc57600080fd5b506106d760048036038101906106d2919061269d565b6111c7565b6040516106e491906124c8565b60405180910390f35b3480156106f957600080fd5b5061070261124e565b60405161070f91906124c8565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a91906124e3565b611254565b005b34801561074d57600080fd5b506107566112d7565b60405161076391906125a9565b60405180910390f35b34801561077857600080fd5b506107816112fd565b60405161078e919061273c565b60405180910390f35b6060600380546107a690612786565b80601f01602080910402602001604051908101604052809291908181526020018280546107d290612786565b801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b5050505050905090565b600080610834611338565b9050610841818585611340565b600191505092915050565b6000600254905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b61087e611509565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561092c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095091906127cc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109fd91906127cc565b6040518363ffffffff1660e01b8152600401610a1a9291906127f9565b6020604051808303816000875af1158015610a39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5d91906127cc565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610aea30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611340565b6001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000610c22611008565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610c81611338565b9050610c8e858285611587565b610c99858585611613565b60019150509392505050565b60006012905090565b6c0c9f2c9cd04674edea4000000081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610cf0611338565b9050610d11818585610d0285896111c7565b610d0c9190612851565b611340565b600191505092915050565b610d24611509565b610d2c611900565b565b610d36611509565b81600b8190555080600c819055505050565b610d59610d53611338565b82611963565b50565b6000600560009054906101000a900460ff16905090565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc9611509565b610dd36000611b39565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906128f3565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806007819055505050565b610ec382610ebd611338565b83611587565b610ecd8282611963565b5050565b610ed9611509565b610ee1611bff565b565b610eeb611509565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f6391906125a9565b602060405180830381865afa158015610f80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa49190612928565b6040518363ffffffff1660e01b8152600401610fc1929190612955565b6020604051808303816000875af1158015610fe0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110049190612993565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461104190612786565b80601f016020809104026020016040519081016040528092919081815260200182805461106d90612786565b80156110ba5780601f1061108f576101008083540402835291602001916110ba565b820191906000526020600020905b81548152906001019060200180831161109d57829003601f168201915b5050505050905090565b6000806110cf611338565b905060006110dd82866111c7565b905083811015611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990612a32565b60405180910390fd5b61112f8286868403611340565b60019250505092915050565b600080611146611338565b9050611153818585611613565b600191505092915050565b60075481565b61116c611509565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b61125c611509565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290612ac4565b60405180910390fd5b6112d481611b39565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61132e838383611333565b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690612b56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590612be8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114fc91906124c8565b60405180910390a3505050565b611511611338565b73ffffffffffffffffffffffffffffffffffffffff1661152f611008565b73ffffffffffffffffffffffffffffffffffffffff1614611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90612c54565b60405180910390fd5b565b600061159384846111c7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461160d57818110156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690612cc0565b60405180910390fd5b61160c8484848403611340565b5b50505050565b600d60009054906101000a900460ff16806116cb5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116ca5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b156116e0576116db838383611c62565b6118fb565b60006116eb30610d79565b90506007548111801561174b5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156117b3576001600d60006101000a81548160ff02191690831515021790555061179781600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611ee1565b6000600d60006101000a81548160ff0219169083151502179055505b60008290506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036118225761181b84600c54612188565b9050611887565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118865761188384600b54612188565b90505b5b8082116118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090612d2c565b60405180910390fd5b80826118d59190612d4c565b91506118e2868684611c62565b60008111156118f7576118f6863083611c62565b5b5050505b505050565b6119086121ab565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61194c611338565b60405161195991906125a9565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990612df2565b60405180910390fd5b6119de826000836121f4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90612e84565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611abb9190612d4c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b2091906124c8565b60405180910390a3611b34836000846122a0565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c076122a5565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c4b611338565b604051611c5891906125a9565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc890612f16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3790612fa8565b60405180910390fd5b611d4b8383836121f4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc89061303a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e649190612851565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ec891906124c8565b60405180910390a3611edb8484846122a0565b50505050565b600080600267ffffffffffffffff811115611eff57611efe61305a565b5b604051908082528060200260200182016040528015611f2d5781602001602082028036833780820191505090505b5090503081600081518110611f4557611f44613089565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201091906127cc565b8160018151811061202457612023613089565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008487426040518663ffffffff1660e01b81526004016120c29594939291906131b1565b600060405180830381600087803b1580156120dc57600080fd5b505af11580156120f0573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161213a9061323c565b60006040518083038185875af1925050503d8060008114612177576040519150601f19603f3d011682016040523d82523d6000602084013e61217c565b606091505b50508092505050505050565b600061271082846121999190613251565b6121a391906132da565b905092915050565b6121b3610d5c565b6121f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e990613357565b60405180910390fd5b565b6121ff838383611323565b612207610d5c565b158061225c5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61229b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612292906133e9565b60405180910390fd5b505050565b505050565b6122ad610d5c565b156122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e490613455565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561232957808201518184015260208101905061230e565b83811115612338576000848401525b50505050565b6000601f19601f8301169050919050565b600061235a826122ef565b61236481856122fa565b935061237481856020860161230b565b61237d8161233e565b840191505092915050565b600060208201905081810360008301526123a2818461234f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123da826123af565b9050919050565b6123ea816123cf565b81146123f557600080fd5b50565b600081359050612407816123e1565b92915050565b6000819050919050565b6124208161240d565b811461242b57600080fd5b50565b60008135905061243d81612417565b92915050565b6000806040838503121561245a576124596123aa565b5b6000612468858286016123f8565b92505060206124798582860161242e565b9150509250929050565b60008115159050919050565b61249881612483565b82525050565b60006020820190506124b3600083018461248f565b92915050565b6124c28161240d565b82525050565b60006020820190506124dd60008301846124b9565b92915050565b6000602082840312156124f9576124f86123aa565b5b6000612507848285016123f8565b91505092915050565b600080600060608486031215612529576125286123aa565b5b6000612537868287016123f8565b9350506020612548868287016123f8565b92505060406125598682870161242e565b9150509250925092565b600060ff82169050919050565b61257981612563565b82525050565b60006020820190506125946000830184612570565b92915050565b6125a3816123cf565b82525050565b60006020820190506125be600083018461259a565b92915050565b600080604083850312156125db576125da6123aa565b5b60006125e98582860161242e565b92505060206125fa8582860161242e565b9150509250929050565b60006020828403121561261a576126196123aa565b5b60006126288482850161242e565b91505092915050565b61263a81612483565b811461264557600080fd5b50565b60008135905061265781612631565b92915050565b60008060408385031215612674576126736123aa565b5b6000612682858286016123f8565b925050602061269385828601612648565b9150509250929050565b600080604083850312156126b4576126b36123aa565b5b60006126c2858286016123f8565b92505060206126d3858286016123f8565b9150509250929050565b6000819050919050565b60006127026126fd6126f8846123af565b6126dd565b6123af565b9050919050565b6000612714826126e7565b9050919050565b600061272682612709565b9050919050565b6127368161271b565b82525050565b6000602082019050612751600083018461272d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061279e57607f821691505b6020821081036127b1576127b0612757565b5b50919050565b6000815190506127c6816123e1565b92915050565b6000602082840312156127e2576127e16123aa565b5b60006127f0848285016127b7565b91505092915050565b600060408201905061280e600083018561259a565b61281b602083018461259a565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061285c8261240d565b91506128678361240d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561289c5761289b612822565b5b828201905092915050565b7f596f7520646f6e27742068617665207065726d697373696f6e00000000000000600082015250565b60006128dd6019836122fa565b91506128e8826128a7565b602082019050919050565b6000602082019050818103600083015261290c816128d0565b9050919050565b60008151905061292281612417565b92915050565b60006020828403121561293e5761293d6123aa565b5b600061294c84828501612913565b91505092915050565b600060408201905061296a600083018561259a565b61297760208301846124b9565b9392505050565b60008151905061298d81612631565b92915050565b6000602082840312156129a9576129a86123aa565b5b60006129b78482850161297e565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a1c6025836122fa565b9150612a27826129c0565b604082019050919050565b60006020820190508181036000830152612a4b81612a0f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612aae6026836122fa565b9150612ab982612a52565b604082019050919050565b60006020820190508181036000830152612add81612aa1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b406024836122fa565b9150612b4b82612ae4565b604082019050919050565b60006020820190508181036000830152612b6f81612b33565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bd26022836122fa565b9150612bdd82612b76565b604082019050919050565b60006020820190508181036000830152612c0181612bc5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c3e6020836122fa565b9150612c4982612c08565b602082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612caa601d836122fa565b9150612cb582612c74565b602082019050919050565b60006020820190508181036000830152612cd981612c9d565b9050919050565b7f616d6f756e74206572726f720000000000000000000000000000000000000000600082015250565b6000612d16600c836122fa565b9150612d2182612ce0565b602082019050919050565b60006020820190508181036000830152612d4581612d09565b9050919050565b6000612d578261240d565b9150612d628361240d565b925082821015612d7557612d74612822565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ddc6021836122fa565b9150612de782612d80565b604082019050919050565b60006020820190508181036000830152612e0b81612dcf565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e6e6022836122fa565b9150612e7982612e12565b604082019050919050565b60006020820190508181036000830152612e9d81612e61565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f006025836122fa565b9150612f0b82612ea4565b604082019050919050565b60006020820190508181036000830152612f2f81612ef3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f926023836122fa565b9150612f9d82612f36565b604082019050919050565b60006020820190508181036000830152612fc181612f85565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130246026836122fa565b915061302f82612fc8565b604082019050919050565b6000602082019050818103600083015261305381613017565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006130dd6130d86130d3846130b8565b6126dd565b61240d565b9050919050565b6130ed816130c2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613128816123cf565b82525050565b600061313a838361311f565b60208301905092915050565b6000602082019050919050565b600061315e826130f3565b61316881856130fe565b93506131738361310f565b8060005b838110156131a457815161318b888261312e565b975061319683613146565b925050600181019050613177565b5085935050505092915050565b600060a0820190506131c660008301886124b9565b6131d360208301876130e4565b81810360408301526131e58186613153565b90506131f4606083018561259a565b61320160808301846124b9565b9695505050505050565b600081905092915050565b50565b600061322660008361320b565b915061323182613216565b600082019050919050565b600061324782613219565b9150819050919050565b600061325c8261240d565b91506132678361240d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132a05761329f612822565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132e58261240d565b91506132f08361240d565b925082613300576132ff6132ab565b5b828204905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006133416014836122fa565b915061334c8261330b565b602082019050919050565b6000602082019050818103600083015261337081613334565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006133d3602a836122fa565b91506133de82613377565b604082019050919050565b60006020820190508181036000830152613402816133c6565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061343f6010836122fa565b915061344a82613409565b602082019050919050565b6000602082019050818103600083015261346e81613432565b905091905056fea264697066735822122079c8d455fb7abd722bb40a45757b49dec6a97cfbb5d2513e1087ae79811826bd64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c8063715018a611610102578063a9059cbb11610095578063ee2f5a4511610064578063ee2f5a45146106ed578063f2fde38b14610718578063f6359f4c14610741578063f887ea401461076c576101ee565b8063a9059cbb1461061f578063abeb5b1b1461065c578063cad9356314610687578063dd62ed3e146106b0576101ee565b806389476069116100d157806389476069146105635780638da5cb5b1461058c57806395d89b41146105b7578063a457c2d7146105e2576101ee565b8063715018a6146104e357806371d74429146104fa57806379cc6790146105235780638456cb591461054c576101ee565b806333f4406a1161017a57806342966c681161014957806342966c68146104275780635c975abb1461045057806368b058eb1461047b57806370a08231146104a6576101ee565b806333f4406a1461037f57806339509351146103aa5780633f4ba83a146103e7578063405abb41146103fe576101ee565b806319ab453c116101b657806319ab453c146102c357806323b872dd146102ec578063313ce5671461032957806332cb6b0c14610354576101ee565b806306fdde03146101f3578063095ea7b31461021e57806318160ddd1461025b57806318838e8214610286576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610797565b6040516102159190612388565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190612443565b610829565b604051610252919061249e565b60405180910390f35b34801561026757600080fd5b5061027061084c565b60405161027d91906124c8565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a891906124e3565b610856565b6040516102ba919061249e565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e591906124e3565b610876565b005b3480156102f857600080fd5b50610313600480360381019061030e9190612510565b610c76565b604051610320919061249e565b60405180910390f35b34801561033557600080fd5b5061033e610ca5565b60405161034b919061257f565b60405180910390f35b34801561036057600080fd5b50610369610cae565b60405161037691906124c8565b60405180910390f35b34801561038b57600080fd5b50610394610cbf565b6040516103a191906125a9565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190612443565b610ce5565b6040516103de919061249e565b60405180910390f35b3480156103f357600080fd5b506103fc610d1c565b005b34801561040a57600080fd5b50610425600480360381019061042091906125c4565b610d2e565b005b34801561043357600080fd5b5061044e60048036038101906104499190612604565b610d48565b005b34801561045c57600080fd5b50610465610d5c565b604051610472919061249e565b60405180910390f35b34801561048757600080fd5b50610490610d73565b60405161049d91906124c8565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906124e3565b610d79565b6040516104da91906124c8565b60405180910390f35b3480156104ef57600080fd5b506104f8610dc1565b005b34801561050657600080fd5b50610521600480360381019061051c9190612443565b610dd5565b005b34801561052f57600080fd5b5061054a60048036038101906105459190612443565b610eb1565b005b34801561055857600080fd5b50610561610ed1565b005b34801561056f57600080fd5b5061058a600480360381019061058591906124e3565b610ee3565b005b34801561059857600080fd5b506105a1611008565b6040516105ae91906125a9565b60405180910390f35b3480156105c357600080fd5b506105cc611032565b6040516105d99190612388565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612443565b6110c4565b604051610616919061249e565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612443565b61113b565b604051610653919061249e565b60405180910390f35b34801561066857600080fd5b5061067161115e565b60405161067e91906124c8565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a9919061265d565b611164565b005b3480156106bc57600080fd5b506106d760048036038101906106d2919061269d565b6111c7565b6040516106e491906124c8565b60405180910390f35b3480156106f957600080fd5b5061070261124e565b60405161070f91906124c8565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a91906124e3565b611254565b005b34801561074d57600080fd5b506107566112d7565b60405161076391906125a9565b60405180910390f35b34801561077857600080fd5b506107816112fd565b60405161078e919061273c565b60405180910390f35b6060600380546107a690612786565b80601f01602080910402602001604051908101604052809291908181526020018280546107d290612786565b801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b5050505050905090565b600080610834611338565b9050610841818585611340565b600191505092915050565b6000600254905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b61087e611509565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561092c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095091906127cc565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109fd91906127cc565b6040518363ffffffff1660e01b8152600401610a1a9291906127f9565b6020604051808303816000875af1158015610a39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5d91906127cc565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610aea30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611340565b6001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000610c22611008565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610c81611338565b9050610c8e858285611587565b610c99858585611613565b60019150509392505050565b60006012905090565b6c0c9f2c9cd04674edea4000000081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610cf0611338565b9050610d11818585610d0285896111c7565b610d0c9190612851565b611340565b600191505092915050565b610d24611509565b610d2c611900565b565b610d36611509565b81600b8190555080600c819055505050565b610d59610d53611338565b82611963565b50565b6000600560009054906101000a900460ff16905090565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc9611509565b610dd36000611b39565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c906128f3565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806007819055505050565b610ec382610ebd611338565b83611587565b610ecd8282611963565b5050565b610ed9611509565b610ee1611bff565b565b610eeb611509565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f6391906125a9565b602060405180830381865afa158015610f80573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa49190612928565b6040518363ffffffff1660e01b8152600401610fc1929190612955565b6020604051808303816000875af1158015610fe0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110049190612993565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461104190612786565b80601f016020809104026020016040519081016040528092919081815260200182805461106d90612786565b80156110ba5780601f1061108f576101008083540402835291602001916110ba565b820191906000526020600020905b81548152906001019060200180831161109d57829003601f168201915b5050505050905090565b6000806110cf611338565b905060006110dd82866111c7565b905083811015611122576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111990612a32565b60405180910390fd5b61112f8286868403611340565b60019250505092915050565b600080611146611338565b9050611153818585611613565b600191505092915050565b60075481565b61116c611509565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b61125c611509565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290612ac4565b60405180910390fd5b6112d481611b39565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61132e838383611333565b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690612b56565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590612be8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114fc91906124c8565b60405180910390a3505050565b611511611338565b73ffffffffffffffffffffffffffffffffffffffff1661152f611008565b73ffffffffffffffffffffffffffffffffffffffff1614611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c90612c54565b60405180910390fd5b565b600061159384846111c7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461160d57818110156115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690612cc0565b60405180910390fd5b61160c8484848403611340565b5b50505050565b600d60009054906101000a900460ff16806116cb5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116ca5750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b156116e0576116db838383611c62565b6118fb565b60006116eb30610d79565b90506007548111801561174b5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156117b3576001600d60006101000a81548160ff02191690831515021790555061179781600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611ee1565b6000600d60006101000a81548160ff0219169083151502179055505b60008290506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036118225761181b84600c54612188565b9050611887565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118865761188384600b54612188565b90505b5b8082116118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090612d2c565b60405180910390fd5b80826118d59190612d4c565b91506118e2868684611c62565b60008111156118f7576118f6863083611c62565b5b5050505b505050565b6119086121ab565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61194c611338565b60405161195991906125a9565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990612df2565b60405180910390fd5b6119de826000836121f4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90612e84565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611abb9190612d4c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b2091906124c8565b60405180910390a3611b34836000846122a0565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c076122a5565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c4b611338565b604051611c5891906125a9565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc890612f16565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3790612fa8565b60405180910390fd5b611d4b8383836121f4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc89061303a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e649190612851565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ec891906124c8565b60405180910390a3611edb8484846122a0565b50505050565b600080600267ffffffffffffffff811115611eff57611efe61305a565b5b604051908082528060200260200182016040528015611f2d5781602001602082028036833780820191505090505b5090503081600081518110611f4557611f44613089565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fec573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061201091906127cc565b8160018151811061202457612023613089565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008487426040518663ffffffff1660e01b81526004016120c29594939291906131b1565b600060405180830381600087803b1580156120dc57600080fd5b505af11580156120f0573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161213a9061323c565b60006040518083038185875af1925050503d8060008114612177576040519150601f19603f3d011682016040523d82523d6000602084013e61217c565b606091505b50508092505050505050565b600061271082846121999190613251565b6121a391906132da565b905092915050565b6121b3610d5c565b6121f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e990613357565b60405180910390fd5b565b6121ff838383611323565b612207610d5c565b158061225c5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61229b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612292906133e9565b60405180910390fd5b505050565b505050565b6122ad610d5c565b156122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e490613455565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561232957808201518184015260208101905061230e565b83811115612338576000848401525b50505050565b6000601f19601f8301169050919050565b600061235a826122ef565b61236481856122fa565b935061237481856020860161230b565b61237d8161233e565b840191505092915050565b600060208201905081810360008301526123a2818461234f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123da826123af565b9050919050565b6123ea816123cf565b81146123f557600080fd5b50565b600081359050612407816123e1565b92915050565b6000819050919050565b6124208161240d565b811461242b57600080fd5b50565b60008135905061243d81612417565b92915050565b6000806040838503121561245a576124596123aa565b5b6000612468858286016123f8565b92505060206124798582860161242e565b9150509250929050565b60008115159050919050565b61249881612483565b82525050565b60006020820190506124b3600083018461248f565b92915050565b6124c28161240d565b82525050565b60006020820190506124dd60008301846124b9565b92915050565b6000602082840312156124f9576124f86123aa565b5b6000612507848285016123f8565b91505092915050565b600080600060608486031215612529576125286123aa565b5b6000612537868287016123f8565b9350506020612548868287016123f8565b92505060406125598682870161242e565b9150509250925092565b600060ff82169050919050565b61257981612563565b82525050565b60006020820190506125946000830184612570565b92915050565b6125a3816123cf565b82525050565b60006020820190506125be600083018461259a565b92915050565b600080604083850312156125db576125da6123aa565b5b60006125e98582860161242e565b92505060206125fa8582860161242e565b9150509250929050565b60006020828403121561261a576126196123aa565b5b60006126288482850161242e565b91505092915050565b61263a81612483565b811461264557600080fd5b50565b60008135905061265781612631565b92915050565b60008060408385031215612674576126736123aa565b5b6000612682858286016123f8565b925050602061269385828601612648565b9150509250929050565b600080604083850312156126b4576126b36123aa565b5b60006126c2858286016123f8565b92505060206126d3858286016123f8565b9150509250929050565b6000819050919050565b60006127026126fd6126f8846123af565b6126dd565b6123af565b9050919050565b6000612714826126e7565b9050919050565b600061272682612709565b9050919050565b6127368161271b565b82525050565b6000602082019050612751600083018461272d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061279e57607f821691505b6020821081036127b1576127b0612757565b5b50919050565b6000815190506127c6816123e1565b92915050565b6000602082840312156127e2576127e16123aa565b5b60006127f0848285016127b7565b91505092915050565b600060408201905061280e600083018561259a565b61281b602083018461259a565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061285c8261240d565b91506128678361240d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561289c5761289b612822565b5b828201905092915050565b7f596f7520646f6e27742068617665207065726d697373696f6e00000000000000600082015250565b60006128dd6019836122fa565b91506128e8826128a7565b602082019050919050565b6000602082019050818103600083015261290c816128d0565b9050919050565b60008151905061292281612417565b92915050565b60006020828403121561293e5761293d6123aa565b5b600061294c84828501612913565b91505092915050565b600060408201905061296a600083018561259a565b61297760208301846124b9565b9392505050565b60008151905061298d81612631565b92915050565b6000602082840312156129a9576129a86123aa565b5b60006129b78482850161297e565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a1c6025836122fa565b9150612a27826129c0565b604082019050919050565b60006020820190508181036000830152612a4b81612a0f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612aae6026836122fa565b9150612ab982612a52565b604082019050919050565b60006020820190508181036000830152612add81612aa1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b406024836122fa565b9150612b4b82612ae4565b604082019050919050565b60006020820190508181036000830152612b6f81612b33565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bd26022836122fa565b9150612bdd82612b76565b604082019050919050565b60006020820190508181036000830152612c0181612bc5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c3e6020836122fa565b9150612c4982612c08565b602082019050919050565b60006020820190508181036000830152612c6d81612c31565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612caa601d836122fa565b9150612cb582612c74565b602082019050919050565b60006020820190508181036000830152612cd981612c9d565b9050919050565b7f616d6f756e74206572726f720000000000000000000000000000000000000000600082015250565b6000612d16600c836122fa565b9150612d2182612ce0565b602082019050919050565b60006020820190508181036000830152612d4581612d09565b9050919050565b6000612d578261240d565b9150612d628361240d565b925082821015612d7557612d74612822565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ddc6021836122fa565b9150612de782612d80565b604082019050919050565b60006020820190508181036000830152612e0b81612dcf565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e6e6022836122fa565b9150612e7982612e12565b604082019050919050565b60006020820190508181036000830152612e9d81612e61565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f006025836122fa565b9150612f0b82612ea4565b604082019050919050565b60006020820190508181036000830152612f2f81612ef3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f926023836122fa565b9150612f9d82612f36565b604082019050919050565b60006020820190508181036000830152612fc181612f85565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130246026836122fa565b915061302f82612fc8565b604082019050919050565b6000602082019050818103600083015261305381613017565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006130dd6130d86130d3846130b8565b6126dd565b61240d565b9050919050565b6130ed816130c2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613128816123cf565b82525050565b600061313a838361311f565b60208301905092915050565b6000602082019050919050565b600061315e826130f3565b61316881856130fe565b93506131738361310f565b8060005b838110156131a457815161318b888261312e565b975061319683613146565b925050600181019050613177565b5085935050505092915050565b600060a0820190506131c660008301886124b9565b6131d360208301876130e4565b81810360408301526131e58186613153565b90506131f4606083018561259a565b61320160808301846124b9565b9695505050505050565b600081905092915050565b50565b600061322660008361320b565b915061323182613216565b600082019050919050565b600061324782613219565b9150819050919050565b600061325c8261240d565b91506132678361240d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132a05761329f612822565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132e58261240d565b91506132f08361240d565b925082613300576132ff6132ab565b5b828204905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006133416014836122fa565b915061334c8261330b565b602082019050919050565b6000602082019050818103600083015261337081613334565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006133d3602a836122fa565b91506133de82613377565b604082019050919050565b60006020820190508181036000830152613402816133c6565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061343f6010836122fa565b915061344a82613409565b602082019050919050565b6000602082019050818103600083015261346e81613432565b905091905056fea264697066735822122079c8d455fb7abd722bb40a45757b49dec6a97cfbb5d2513e1087ae79811826bd64736f6c634300080f0033

Deployed Bytecode Sourcemap

33427:3984:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9316:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11667:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10436:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33723:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34282:465;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12448:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10278:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33503:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33572:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13152:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34209:65;;;;;;;;;;;;;:::i;:::-;;34755:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20681:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22931:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33798:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10607:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2749:103;;;;;;;;;;;;;:::i;:::-;;34907:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21091:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34140:61;;;;;;;;;;;;;:::i;:::-;;37251:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2101:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9535:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13893:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10940:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33610:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35188:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11196:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33834:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3007:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33688:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33649:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9316:100;9370:13;9403:5;9396:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9316:100;:::o;11667:201::-;11750:4;11767:13;11783:12;:10;:12::i;:::-;11767:28;;11806:32;11815:5;11822:7;11831:6;11806:8;:32::i;:::-;11856:4;11849:11;;;11667:201;;;;:::o;10436:108::-;10497:7;10524:12;;10517:19;;10436:108;:::o;33723:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;34282:465::-;1987:13;:11;:13::i;:::-;34372:10:::1;34344:6;;:39;;;;;;;;;;;;;;;;;;34426:6;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34408:46;;;34463:4;34470:6;;;;;;;;;;;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34408:76;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34394:11;;:90;;;;;;;;;;;;;;;;;;34497:59;34514:4;34529:6;;;;;;;;;;;34538:17;34497:8;:59::i;:::-;34601:4;34569:14;:29;34592:4;34569:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;34650:4;34616:14;:31;34639:6;;;;;;;;;;;34616:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;34694:4;34665:14;:26;34688:1:::0;34665:26:::1;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;34735:4;34709:14;:23;34724:7;:5;:7::i;:::-;34709:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;34282:465:::0;:::o;12448:295::-;12579:4;12596:15;12614:12;:10;:12::i;:::-;12596:30;;12637:38;12653:4;12659:7;12668:6;12637:15;:38::i;:::-;12686:27;12696:4;12702:2;12706:6;12686:9;:27::i;:::-;12731:4;12724:11;;;12448:295;;;;;:::o;10278:93::-;10336:5;10361:2;10354:9;;10278:93;:::o;33503:60::-;33540:23;33503:60;:::o;33572:31::-;;;;;;;;;;;;;:::o;13152:238::-;13240:4;13257:13;13273:12;:10;:12::i;:::-;13257:28;;13296:64;13305:5;13312:7;13349:10;13321:25;13331:5;13338:7;13321:9;:25::i;:::-;:38;;;;:::i;:::-;13296:8;:64::i;:::-;13378:4;13371:11;;;13152:238;;;;:::o;34209:65::-;1987:13;:11;:13::i;:::-;34256:10:::1;:8;:10::i;:::-;34209:65::o:0;34755:144::-;1987:13;:11;:13::i;:::-;34853:9:::1;34842:8;:20;;;;34883:8;34873:7;:18;;;;34755:144:::0;;:::o;20681:91::-;20737:27;20743:12;:10;:12::i;:::-;20757:6;20737:5;:27::i;:::-;20681:91;:::o;22931:86::-;22978:4;23002:7;;;;;;;;;;;22995:14;;22931:86;:::o;33798:29::-;;;;:::o;10607:127::-;10681:7;10708:9;:18;10718:7;10708:18;;;;;;;;;;;;;;;;10701:25;;10607:127;;;:::o;2749:103::-;1987:13;:11;:13::i;:::-;2814:30:::1;2841:1;2814:18;:30::i;:::-;2749:103::o:0;34907:273::-;35034:16;;;;;;;;;;;35020:30;;:10;:30;;;35012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35110:17;35091:16;;:36;;;;;;;;;;;;;;;;;;35156:16;35138:15;:34;;;;34907:273;;:::o;21091:164::-;21168:46;21184:7;21193:12;:10;:12::i;:::-;21207:6;21168:15;:46::i;:::-;21225:22;21231:7;21240:6;21225:5;:22::i;:::-;21091:164;;:::o;34140:61::-;1987:13;:11;:13::i;:::-;34185:8:::1;:6;:8::i;:::-;34140:61::o:0;37251:157::-;1987:13;:11;:13::i;:::-;37325:6:::1;37318:23;;;37342:16;;;;;;;;;;;37367:6;37360:24;;;37393:4;37360:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37318:82;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37251:157:::0;:::o;2101:87::-;2147:7;2174:6;;;;;;;;;;;2167:13;;2101:87;:::o;9535:104::-;9591:13;9624:7;9617:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9535:104;:::o;13893:436::-;13986:4;14003:13;14019:12;:10;:12::i;:::-;14003:28;;14042:24;14069:25;14079:5;14086:7;14069:9;:25::i;:::-;14042:52;;14133:15;14113:16;:35;;14105:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14226:60;14235:5;14242:7;14270:15;14251:16;:34;14226:8;:60::i;:::-;14317:4;14310:11;;;;13893:436;;;;:::o;10940:193::-;11019:4;11036:13;11052:12;:10;:12::i;:::-;11036:28;;11075;11085:5;11092:2;11096:6;11075:9;:28::i;:::-;11121:4;11114:11;;;10940:193;;;;:::o;33610:30::-;;;;:::o;35188:124::-;1987:13;:11;:13::i;:::-;35298:6:::1;35275:14;:20;35290:4;35275:20;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35188:124:::0;;:::o;11196:151::-;11285:7;11312:11;:18;11324:5;11312:18;;;;;;;;;;;;;;;:27;11331:7;11312:27;;;;;;;;;;;;;;;;11305:34;;11196:151;;;;:::o;33834:28::-;;;;:::o;3007:201::-;1987:13;:11;:13::i;:::-;3116:1:::1;3096:22;;:8;:22;;::::0;3088:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3172:28;3191:8;3172:18;:28::i;:::-;3007:201:::0;:::o;33688:26::-;;;;;;;;;;;;;:::o;33649:32::-;;;;;;;;;;;;;:::o;24579:195::-;24722:44;24749:4;24755:2;24759:6;24722:26;:44::i;:::-;24579:195;;;:::o;19242:125::-;;;;:::o;656:98::-;709:7;736:10;729:17;;656:98;:::o;17518:380::-;17671:1;17654:19;;:5;:19;;;17646:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17752:1;17733:21;;:7;:21;;;17725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17836:6;17806:11;:18;17818:5;17806:18;;;;;;;;;;;;;;;:27;17825:7;17806:27;;;;;;;;;;;;;;;:36;;;;17874:7;17858:32;;17867:5;17858:32;;;17883:6;17858:32;;;;;;:::i;:::-;;;;;;;;17518:380;;;:::o;2266:132::-;2341:12;:10;:12::i;:::-;2330:23;;:7;:5;:7::i;:::-;:23;;;2322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2266:132::o;18189:453::-;18324:24;18351:25;18361:5;18368:7;18351:9;:25::i;:::-;18324:52;;18411:17;18391:16;:37;18387:248;;18473:6;18453:16;:26;;18445:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18557:51;18566:5;18573:7;18601:6;18582:16;:25;18557:8;:51::i;:::-;18387:248;18313:329;18189:453;;;:::o;35611:1047::-;35714:10;;;;;;;;;;;:67;;;;35729:14;:22;35744:6;35729:22;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;35755:14;:25;35770:9;35755:25;;;;;;;;;;;;;;;;;;;;;;;;;35729:51;35714:67;35710:163;;;35798:42;35814:6;35822:9;35833:6;35798:15;:42::i;:::-;35855:7;;35710:163;35885:11;35899:24;35917:4;35899:9;:24::i;:::-;35885:38;;35944:15;;35938:3;:21;:49;;;;;35976:11;;;;;;;;;;;35963:24;;:9;:24;;;35938:49;35934:177;;;36017:4;36004:10;;:17;;;;;;;;;;;;;;;;;;36036:30;36044:3;36049:16;;;;;;;;;;;36036:7;:30::i;:::-;36094:5;36081:10;;:18;;;;;;;;;;;;;;;;;;35934:177;36123:18;36144:6;36123:27;;36161:17;36209:11;;;;;;;;;;;36199:21;;:6;:21;;;36195:198;;36249:28;36261:6;36269:7;;36249:11;:28::i;:::-;36237:40;;36195:198;;;36312:11;;;;;;;;;;;36299:24;;:9;:24;;;36295:98;;36352:29;36364:6;36372:8;;36352:11;:29::i;:::-;36340:41;;36295:98;36195:198;36424:9;36411:10;:22;36403:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;36475:9;36461:23;;;;;:::i;:::-;;;36497:46;36513:6;36521:9;36532:10;36497:15;:46::i;:::-;36572:1;36560:9;:13;36556:95;;;36590:49;36606:6;36622:4;36629:9;36590:15;:49::i;:::-;36556:95;35699:959;;;35611:1047;;;;:::o;23786:120::-;22795:16;:14;:16::i;:::-;23855:5:::1;23845:7;;:15;;;;;;;;;;;;;;;;;;23876:22;23885:12;:10;:12::i;:::-;23876:22;;;;;;:::i;:::-;;;;;;;;23786:120::o:0;16489:591::-;16592:1;16573:21;;:7;:21;;;16565:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16645:49;16666:7;16683:1;16687:6;16645:20;:49::i;:::-;16707:22;16732:9;:18;16742:7;16732:18;;;;;;;;;;;;;;;;16707:43;;16787:6;16769:14;:24;;16761:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16906:6;16889:14;:23;16868:9;:18;16878:7;16868:18;;;;;;;;;;;;;;;:44;;;;16950:6;16934:12;;:22;;;;;;;:::i;:::-;;;;;;;;17000:1;16974:37;;16983:7;16974:37;;;17004:6;16974:37;;;;;;:::i;:::-;;;;;;;;17024:48;17044:7;17061:1;17065:6;17024:19;:48::i;:::-;16554:526;16489:591;;:::o;3368:191::-;3442:16;3461:6;;;;;;;;;;;3442:25;;3487:8;3478:6;;:17;;;;;;;;;;;;;;;;;;3542:8;3511:40;;3532:8;3511:40;;;;;;;;;;;;3431:128;3368:191;:::o;23527:118::-;22536:19;:17;:19::i;:::-;23597:4:::1;23587:7;;:14;;;;;;;;;;;;;;;;;;23617:20;23624:12;:10;:12::i;:::-;23617:20;;;;;;:::i;:::-;;;;;;;;23527:118::o:0;14799:671::-;14946:1;14930:18;;:4;:18;;;14922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15023:1;15009:16;;:2;:16;;;15001:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15078:38;15099:4;15105:2;15109:6;15078:20;:38::i;:::-;15129:19;15151:9;:15;15161:4;15151:15;;;;;;;;;;;;;;;;15129:37;;15200:6;15185:11;:21;;15177:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15317:6;15303:11;:20;15285:9;:15;15295:4;15285:15;;;;;;;;;;;;;;;:38;;;;15362:6;15345:9;:13;15355:2;15345:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15401:2;15386:26;;15395:4;15386:26;;;15405:6;15386:26;;;;;;:::i;:::-;;;;;;;;15425:37;15445:4;15451:2;15455:6;15425:19;:37::i;:::-;14911:559;14799:671;;;:::o;36806:400::-;36870:12;36893:21;36931:1;36917:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36893:40;;36962:4;36944;36949:1;36944:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;36988:6;;;;;;;;;;;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36978:4;36983:1;36978:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;37012:6;;;;;;;;;;;:57;;;37070:6;37078:1;37081:4;37087:2;37091:15;37012:95;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37142:16;;;;;;;;;;;37134:30;;37172:21;37134:64;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37120:78;;;;;36859:347;;36806:400;;:::o;36666:132::-;36740:7;36785:5;36777:4;36768:6;:13;;;;:::i;:::-;36767:23;;;;:::i;:::-;36760:30;;36666:132;;;;:::o;23275:108::-;23342:8;:6;:8::i;:::-;23334:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;23275:108::o;35320:283::-;35451:44;35478:4;35484:2;35488:6;35451:26;:44::i;:::-;35515:8;:6;:8::i;:::-;35514:9;:33;;;;35527:14;:20;35542:4;35527:20;;;;;;;;;;;;;;;;;;;;;;;;;35514:33;35506:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;35320:283;;;:::o;19971:124::-;;;;:::o;23090:108::-;23161:8;:6;:8::i;:::-;23160:9;23152:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;23090:108::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:619::-;4258:6;4266;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:119;;;4329:79;;:::i;:::-;4291:119;4449:1;4474:53;4519:7;4510:6;4499:9;4495:22;4474:53;:::i;:::-;4464:63;;4420:117;4576:2;4602:53;4647:7;4638:6;4627:9;4623:22;4602:53;:::i;:::-;4592:63;;4547:118;4704:2;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4675:118;4181:619;;;;;:::o;4806:86::-;4841:7;4881:4;4874:5;4870:16;4859:27;;4806:86;;;:::o;4898:112::-;4981:22;4997:5;4981:22;:::i;:::-;4976:3;4969:35;4898:112;;:::o;5016:214::-;5105:4;5143:2;5132:9;5128:18;5120:26;;5156:67;5220:1;5209:9;5205:17;5196:6;5156:67;:::i;:::-;5016:214;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:474::-;5656:6;5664;5713:2;5701:9;5692:7;5688:23;5684:32;5681:119;;;5719:79;;:::i;:::-;5681:119;5839:1;5864:53;5909:7;5900:6;5889:9;5885:22;5864:53;:::i;:::-;5854:63;;5810:117;5966:2;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5937:118;5588:474;;;;;:::o;6068:329::-;6127:6;6176:2;6164:9;6155:7;6151:23;6147:32;6144:119;;;6182:79;;:::i;:::-;6144:119;6302:1;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6273:117;6068:329;;;;:::o;6403:116::-;6473:21;6488:5;6473:21;:::i;:::-;6466:5;6463:32;6453:60;;6509:1;6506;6499:12;6453:60;6403:116;:::o;6525:133::-;6568:5;6606:6;6593:20;6584:29;;6622:30;6646:5;6622:30;:::i;:::-;6525:133;;;;:::o;6664:468::-;6729:6;6737;6786:2;6774:9;6765:7;6761:23;6757:32;6754:119;;;6792:79;;:::i;:::-;6754:119;6912:1;6937:53;6982:7;6973:6;6962:9;6958:22;6937:53;:::i;:::-;6927:63;;6883:117;7039:2;7065:50;7107:7;7098:6;7087:9;7083:22;7065:50;:::i;:::-;7055:60;;7010:115;6664:468;;;;;:::o;7138:474::-;7206:6;7214;7263:2;7251:9;7242:7;7238:23;7234:32;7231:119;;;7269:79;;:::i;:::-;7231:119;7389:1;7414:53;7459:7;7450:6;7439:9;7435:22;7414:53;:::i;:::-;7404:63;;7360:117;7516:2;7542:53;7587:7;7578:6;7567:9;7563:22;7542:53;:::i;:::-;7532:63;;7487:118;7138:474;;;;;:::o;7618:60::-;7646:3;7667:5;7660:12;;7618:60;;;:::o;7684:142::-;7734:9;7767:53;7785:34;7794:24;7812:5;7794:24;:::i;:::-;7785:34;:::i;:::-;7767:53;:::i;:::-;7754:66;;7684:142;;;:::o;7832:126::-;7882:9;7915:37;7946:5;7915:37;:::i;:::-;7902:50;;7832:126;;;:::o;7964:153::-;8041:9;8074:37;8105:5;8074:37;:::i;:::-;8061:50;;7964:153;;;:::o;8123:185::-;8237:64;8295:5;8237:64;:::i;:::-;8232:3;8225:77;8123:185;;:::o;8314:276::-;8434:4;8472:2;8461:9;8457:18;8449:26;;8485:98;8580:1;8569:9;8565:17;8556:6;8485:98;:::i;:::-;8314:276;;;;:::o;8596:180::-;8644:77;8641:1;8634:88;8741:4;8738:1;8731:15;8765:4;8762:1;8755:15;8782:320;8826:6;8863:1;8857:4;8853:12;8843:22;;8910:1;8904:4;8900:12;8931:18;8921:81;;8987:4;8979:6;8975:17;8965:27;;8921:81;9049:2;9041:6;9038:14;9018:18;9015:38;9012:84;;9068:18;;:::i;:::-;9012:84;8833:269;8782:320;;;:::o;9108:143::-;9165:5;9196:6;9190:13;9181:22;;9212:33;9239:5;9212:33;:::i;:::-;9108:143;;;;:::o;9257:351::-;9327:6;9376:2;9364:9;9355:7;9351:23;9347:32;9344:119;;;9382:79;;:::i;:::-;9344:119;9502:1;9527:64;9583:7;9574:6;9563:9;9559:22;9527:64;:::i;:::-;9517:74;;9473:128;9257:351;;;;:::o;9614:332::-;9735:4;9773:2;9762:9;9758:18;9750:26;;9786:71;9854:1;9843:9;9839:17;9830:6;9786:71;:::i;:::-;9867:72;9935:2;9924:9;9920:18;9911:6;9867:72;:::i;:::-;9614:332;;;;;:::o;9952:180::-;10000:77;9997:1;9990:88;10097:4;10094:1;10087:15;10121:4;10118:1;10111:15;10138:305;10178:3;10197:20;10215:1;10197:20;:::i;:::-;10192:25;;10231:20;10249:1;10231:20;:::i;:::-;10226:25;;10385:1;10317:66;10313:74;10310:1;10307:81;10304:107;;;10391:18;;:::i;:::-;10304:107;10435:1;10432;10428:9;10421:16;;10138:305;;;;:::o;10449:175::-;10589:27;10585:1;10577:6;10573:14;10566:51;10449:175;:::o;10630:366::-;10772:3;10793:67;10857:2;10852:3;10793:67;:::i;:::-;10786:74;;10869:93;10958:3;10869:93;:::i;:::-;10987:2;10982:3;10978:12;10971:19;;10630:366;;;:::o;11002:419::-;11168:4;11206:2;11195:9;11191:18;11183:26;;11255:9;11249:4;11245:20;11241:1;11230:9;11226:17;11219:47;11283:131;11409:4;11283:131;:::i;:::-;11275:139;;11002:419;;;:::o;11427:143::-;11484:5;11515:6;11509:13;11500:22;;11531:33;11558:5;11531:33;:::i;:::-;11427:143;;;;:::o;11576:351::-;11646:6;11695:2;11683:9;11674:7;11670:23;11666:32;11663:119;;;11701:79;;:::i;:::-;11663:119;11821:1;11846:64;11902:7;11893:6;11882:9;11878:22;11846:64;:::i;:::-;11836:74;;11792:128;11576:351;;;;:::o;11933:332::-;12054:4;12092:2;12081:9;12077:18;12069:26;;12105:71;12173:1;12162:9;12158:17;12149:6;12105:71;:::i;:::-;12186:72;12254:2;12243:9;12239:18;12230:6;12186:72;:::i;:::-;11933:332;;;;;:::o;12271:137::-;12325:5;12356:6;12350:13;12341:22;;12372:30;12396:5;12372:30;:::i;:::-;12271:137;;;;:::o;12414:345::-;12481:6;12530:2;12518:9;12509:7;12505:23;12501:32;12498:119;;;12536:79;;:::i;:::-;12498:119;12656:1;12681:61;12734:7;12725:6;12714:9;12710:22;12681:61;:::i;:::-;12671:71;;12627:125;12414:345;;;;:::o;12765:224::-;12905:34;12901:1;12893:6;12889:14;12882:58;12974:7;12969:2;12961:6;12957:15;12950:32;12765:224;:::o;12995:366::-;13137:3;13158:67;13222:2;13217:3;13158:67;:::i;:::-;13151:74;;13234:93;13323:3;13234:93;:::i;:::-;13352:2;13347:3;13343:12;13336:19;;12995:366;;;:::o;13367:419::-;13533:4;13571:2;13560:9;13556:18;13548:26;;13620:9;13614:4;13610:20;13606:1;13595:9;13591:17;13584:47;13648:131;13774:4;13648:131;:::i;:::-;13640:139;;13367:419;;;:::o;13792:225::-;13932:34;13928:1;13920:6;13916:14;13909:58;14001:8;13996:2;13988:6;13984:15;13977:33;13792:225;:::o;14023:366::-;14165:3;14186:67;14250:2;14245:3;14186:67;:::i;:::-;14179:74;;14262:93;14351:3;14262:93;:::i;:::-;14380:2;14375:3;14371:12;14364:19;;14023:366;;;:::o;14395:419::-;14561:4;14599:2;14588:9;14584:18;14576:26;;14648:9;14642:4;14638:20;14634:1;14623:9;14619:17;14612:47;14676:131;14802:4;14676:131;:::i;:::-;14668:139;;14395:419;;;:::o;14820:223::-;14960:34;14956:1;14948:6;14944:14;14937:58;15029:6;15024:2;15016:6;15012:15;15005:31;14820:223;:::o;15049:366::-;15191:3;15212:67;15276:2;15271:3;15212:67;:::i;:::-;15205:74;;15288:93;15377:3;15288:93;:::i;:::-;15406:2;15401:3;15397:12;15390:19;;15049:366;;;:::o;15421:419::-;15587:4;15625:2;15614:9;15610:18;15602:26;;15674:9;15668:4;15664:20;15660:1;15649:9;15645:17;15638:47;15702:131;15828:4;15702:131;:::i;:::-;15694:139;;15421:419;;;:::o;15846:221::-;15986:34;15982:1;15974:6;15970:14;15963:58;16055:4;16050:2;16042:6;16038:15;16031:29;15846:221;:::o;16073:366::-;16215:3;16236:67;16300:2;16295:3;16236:67;:::i;:::-;16229:74;;16312:93;16401:3;16312:93;:::i;:::-;16430:2;16425:3;16421:12;16414:19;;16073:366;;;:::o;16445:419::-;16611:4;16649:2;16638:9;16634:18;16626:26;;16698:9;16692:4;16688:20;16684:1;16673:9;16669:17;16662:47;16726:131;16852:4;16726:131;:::i;:::-;16718:139;;16445:419;;;:::o;16870:182::-;17010:34;17006:1;16998:6;16994:14;16987:58;16870:182;:::o;17058:366::-;17200:3;17221:67;17285:2;17280:3;17221:67;:::i;:::-;17214:74;;17297:93;17386:3;17297:93;:::i;:::-;17415:2;17410:3;17406:12;17399:19;;17058:366;;;:::o;17430:419::-;17596:4;17634:2;17623:9;17619:18;17611:26;;17683:9;17677:4;17673:20;17669:1;17658:9;17654:17;17647:47;17711:131;17837:4;17711:131;:::i;:::-;17703:139;;17430:419;;;:::o;17855:179::-;17995:31;17991:1;17983:6;17979:14;17972:55;17855:179;:::o;18040:366::-;18182:3;18203:67;18267:2;18262:3;18203:67;:::i;:::-;18196:74;;18279:93;18368:3;18279:93;:::i;:::-;18397:2;18392:3;18388:12;18381:19;;18040:366;;;:::o;18412:419::-;18578:4;18616:2;18605:9;18601:18;18593:26;;18665:9;18659:4;18655:20;18651:1;18640:9;18636:17;18629:47;18693:131;18819:4;18693:131;:::i;:::-;18685:139;;18412:419;;;:::o;18837:162::-;18977:14;18973:1;18965:6;18961:14;18954:38;18837:162;:::o;19005:366::-;19147:3;19168:67;19232:2;19227:3;19168:67;:::i;:::-;19161:74;;19244:93;19333:3;19244:93;:::i;:::-;19362:2;19357:3;19353:12;19346:19;;19005:366;;;:::o;19377:419::-;19543:4;19581:2;19570:9;19566:18;19558:26;;19630:9;19624:4;19620:20;19616:1;19605:9;19601:17;19594:47;19658:131;19784:4;19658:131;:::i;:::-;19650:139;;19377:419;;;:::o;19802:191::-;19842:4;19862:20;19880:1;19862:20;:::i;:::-;19857:25;;19896:20;19914:1;19896:20;:::i;:::-;19891:25;;19935:1;19932;19929:8;19926:34;;;19940:18;;:::i;:::-;19926:34;19985:1;19982;19978:9;19970:17;;19802:191;;;;:::o;19999:220::-;20139:34;20135:1;20127:6;20123:14;20116:58;20208:3;20203:2;20195:6;20191:15;20184:28;19999:220;:::o;20225:366::-;20367:3;20388:67;20452:2;20447:3;20388:67;:::i;:::-;20381:74;;20464:93;20553:3;20464:93;:::i;:::-;20582:2;20577:3;20573:12;20566:19;;20225:366;;;:::o;20597:419::-;20763:4;20801:2;20790:9;20786:18;20778:26;;20850:9;20844:4;20840:20;20836:1;20825:9;20821:17;20814:47;20878:131;21004:4;20878:131;:::i;:::-;20870:139;;20597:419;;;:::o;21022:221::-;21162:34;21158:1;21150:6;21146:14;21139:58;21231:4;21226:2;21218:6;21214:15;21207:29;21022:221;:::o;21249:366::-;21391:3;21412:67;21476:2;21471:3;21412:67;:::i;:::-;21405:74;;21488:93;21577:3;21488:93;:::i;:::-;21606:2;21601:3;21597:12;21590:19;;21249:366;;;:::o;21621:419::-;21787:4;21825:2;21814:9;21810:18;21802:26;;21874:9;21868:4;21864:20;21860:1;21849:9;21845:17;21838:47;21902:131;22028:4;21902:131;:::i;:::-;21894:139;;21621:419;;;:::o;22046:224::-;22186:34;22182:1;22174:6;22170:14;22163:58;22255:7;22250:2;22242:6;22238:15;22231:32;22046:224;:::o;22276:366::-;22418:3;22439:67;22503:2;22498:3;22439:67;:::i;:::-;22432:74;;22515:93;22604:3;22515:93;:::i;:::-;22633:2;22628:3;22624:12;22617:19;;22276:366;;;:::o;22648:419::-;22814:4;22852:2;22841:9;22837:18;22829:26;;22901:9;22895:4;22891:20;22887:1;22876:9;22872:17;22865:47;22929:131;23055:4;22929:131;:::i;:::-;22921:139;;22648:419;;;:::o;23073:222::-;23213:34;23209:1;23201:6;23197:14;23190:58;23282:5;23277:2;23269:6;23265:15;23258:30;23073:222;:::o;23301:366::-;23443:3;23464:67;23528:2;23523:3;23464:67;:::i;:::-;23457:74;;23540:93;23629:3;23540:93;:::i;:::-;23658:2;23653:3;23649:12;23642:19;;23301:366;;;:::o;23673:419::-;23839:4;23877:2;23866:9;23862:18;23854:26;;23926:9;23920:4;23916:20;23912:1;23901:9;23897:17;23890:47;23954:131;24080:4;23954:131;:::i;:::-;23946:139;;23673:419;;;:::o;24098:225::-;24238:34;24234:1;24226:6;24222:14;24215:58;24307:8;24302:2;24294:6;24290:15;24283:33;24098:225;:::o;24329:366::-;24471:3;24492:67;24556:2;24551:3;24492:67;:::i;:::-;24485:74;;24568:93;24657:3;24568:93;:::i;:::-;24686:2;24681:3;24677:12;24670:19;;24329:366;;;:::o;24701:419::-;24867:4;24905:2;24894:9;24890:18;24882:26;;24954:9;24948:4;24944:20;24940:1;24929:9;24925:17;24918:47;24982:131;25108:4;24982:131;:::i;:::-;24974:139;;24701:419;;;:::o;25126:180::-;25174:77;25171:1;25164:88;25271:4;25268:1;25261:15;25295:4;25292:1;25285:15;25312:180;25360:77;25357:1;25350:88;25457:4;25454:1;25447:15;25481:4;25478:1;25471:15;25498:85;25543:7;25572:5;25561:16;;25498:85;;;:::o;25589:158::-;25647:9;25680:61;25698:42;25707:32;25733:5;25707:32;:::i;:::-;25698:42;:::i;:::-;25680:61;:::i;:::-;25667:74;;25589:158;;;:::o;25753:147::-;25848:45;25887:5;25848:45;:::i;:::-;25843:3;25836:58;25753:147;;:::o;25906:114::-;25973:6;26007:5;26001:12;25991:22;;25906:114;;;:::o;26026:184::-;26125:11;26159:6;26154:3;26147:19;26199:4;26194:3;26190:14;26175:29;;26026:184;;;;:::o;26216:132::-;26283:4;26306:3;26298:11;;26336:4;26331:3;26327:14;26319:22;;26216:132;;;:::o;26354:108::-;26431:24;26449:5;26431:24;:::i;:::-;26426:3;26419:37;26354:108;;:::o;26468:179::-;26537:10;26558:46;26600:3;26592:6;26558:46;:::i;:::-;26636:4;26631:3;26627:14;26613:28;;26468:179;;;;:::o;26653:113::-;26723:4;26755;26750:3;26746:14;26738:22;;26653:113;;;:::o;26802:732::-;26921:3;26950:54;26998:5;26950:54;:::i;:::-;27020:86;27099:6;27094:3;27020:86;:::i;:::-;27013:93;;27130:56;27180:5;27130:56;:::i;:::-;27209:7;27240:1;27225:284;27250:6;27247:1;27244:13;27225:284;;;27326:6;27320:13;27353:63;27412:3;27397:13;27353:63;:::i;:::-;27346:70;;27439:60;27492:6;27439:60;:::i;:::-;27429:70;;27285:224;27272:1;27269;27265:9;27260:14;;27225:284;;;27229:14;27525:3;27518:10;;26926:608;;;26802:732;;;;:::o;27540:831::-;27803:4;27841:3;27830:9;27826:19;27818:27;;27855:71;27923:1;27912:9;27908:17;27899:6;27855:71;:::i;:::-;27936:80;28012:2;28001:9;27997:18;27988:6;27936:80;:::i;:::-;28063:9;28057:4;28053:20;28048:2;28037:9;28033:18;28026:48;28091:108;28194:4;28185:6;28091:108;:::i;:::-;28083:116;;28209:72;28277:2;28266:9;28262:18;28253:6;28209:72;:::i;:::-;28291:73;28359:3;28348:9;28344:19;28335:6;28291:73;:::i;:::-;27540:831;;;;;;;;:::o;28377:147::-;28478:11;28515:3;28500:18;;28377:147;;;;:::o;28530:114::-;;:::o;28650:398::-;28809:3;28830:83;28911:1;28906:3;28830:83;:::i;:::-;28823:90;;28922:93;29011:3;28922:93;:::i;:::-;29040:1;29035:3;29031:11;29024:18;;28650:398;;;:::o;29054:379::-;29238:3;29260:147;29403:3;29260:147;:::i;:::-;29253:154;;29424:3;29417:10;;29054:379;;;:::o;29439:348::-;29479:7;29502:20;29520:1;29502:20;:::i;:::-;29497:25;;29536:20;29554:1;29536:20;:::i;:::-;29531:25;;29724:1;29656:66;29652:74;29649:1;29646:81;29641:1;29634:9;29627:17;29623:105;29620:131;;;29731:18;;:::i;:::-;29620:131;29779:1;29776;29772:9;29761:20;;29439:348;;;;:::o;29793:180::-;29841:77;29838:1;29831:88;29938:4;29935:1;29928:15;29962:4;29959:1;29952:15;29979:185;30019:1;30036:20;30054:1;30036:20;:::i;:::-;30031:25;;30070:20;30088:1;30070:20;:::i;:::-;30065:25;;30109:1;30099:35;;30114:18;;:::i;:::-;30099:35;30156:1;30153;30149:9;30144:14;;29979:185;;;;:::o;30170:170::-;30310:22;30306:1;30298:6;30294:14;30287:46;30170:170;:::o;30346:366::-;30488:3;30509:67;30573:2;30568:3;30509:67;:::i;:::-;30502:74;;30585:93;30674:3;30585:93;:::i;:::-;30703:2;30698:3;30694:12;30687:19;;30346:366;;;:::o;30718:419::-;30884:4;30922:2;30911:9;30907:18;30899:26;;30971:9;30965:4;30961:20;30957:1;30946:9;30942:17;30935:47;30999:131;31125:4;30999:131;:::i;:::-;30991:139;;30718:419;;;:::o;31143:229::-;31283:34;31279:1;31271:6;31267:14;31260:58;31352:12;31347:2;31339:6;31335:15;31328:37;31143:229;:::o;31378:366::-;31520:3;31541:67;31605:2;31600:3;31541:67;:::i;:::-;31534:74;;31617:93;31706:3;31617:93;:::i;:::-;31735:2;31730:3;31726:12;31719:19;;31378:366;;;:::o;31750:419::-;31916:4;31954:2;31943:9;31939:18;31931:26;;32003:9;31997:4;31993:20;31989:1;31978:9;31974:17;31967:47;32031:131;32157:4;32031:131;:::i;:::-;32023:139;;31750:419;;;:::o;32175:166::-;32315:18;32311:1;32303:6;32299:14;32292:42;32175:166;:::o;32347:366::-;32489:3;32510:67;32574:2;32569:3;32510:67;:::i;:::-;32503:74;;32586:93;32675:3;32586:93;:::i;:::-;32704:2;32699:3;32695:12;32688:19;;32347:366;;;:::o;32719:419::-;32885:4;32923:2;32912:9;32908:18;32900:26;;32972:9;32966:4;32962:20;32958:1;32947:9;32943:17;32936:47;33000:131;33126:4;33000:131;:::i;:::-;32992:139;;32719:419;;;:::o

Swarm Source

ipfs://79c8d455fb7abd722bb40a45757b49dec6a97cfbb5d2513e1087ae79811826bd
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.