ETH Price: $2,466.44 (+0.88%)

Token

DaDa (DADA)
 

Overview

Max Total Supply

537,283,729.83 DADA

Holders

67 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
29,761.90185 DADA

Value
$0.00
0xa33c7f924399b59a8ee627388a108beab5e12eaf
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Dada is a decentralized platform aggregating Mining DAO.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
StakingToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-12-15
*/

// File: @openzeppelin/contracts/math/SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

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

        return c;
    }

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

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

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

pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) =
            target.call{value: weiValue}(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.6.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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

pragma solidity ^0.6.0;

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transfer.selector, to, value)
        );
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
        );
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(token.approve.selector, spender, value)
        );
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance =
            token.allowance(address(this), spender).add(value);
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                newAllowance
            )
        );
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance =
            token.allowance(address(this), spender).sub(
                value,
                "SafeERC20: decreased allowance below zero"
            );
        _callOptionalReturn(
            token,
            abi.encodeWithSelector(
                token.approve.selector,
                spender,
                newAllowance
            )
        );
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata =
            address(token).functionCall(
                data,
                "SafeERC20: low-level call failed"
            );
        if (returndata.length > 0) {
            // Return data is optional
            // solhint-disable-next-line max-line-length
            require(
                abi.decode(returndata, (bool)),
                "SafeERC20: ERC20 operation did not succeed"
            );
        }
    }
}

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

pragma solidity ^0.6.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() internal {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: contracts/Interface.sol

pragma solidity >=0.6.0 <0.7.0;

interface IERC20Mint {
    function mint(uint256 amount) external returns (bool);
}

interface IERC20MintTo {
    function mint_to(address to, uint256 amount) external returns (bool);
}

// Dada Token
interface IReserveToken {
    function reserve_from(address who, uint256 amount) external returns (bool);

    function unreserve_from(address who, uint256 amount)
        external
        returns (bool);
}

interface IShareModule {
    function ops_reward(
        address to,
        uint256 amount,
        uint256 ops_type,
        uint256 term
    ) external returns (uint256);
}

interface IInterestModule {
    function get(
        uint256 amount,
        uint256 term,
        uint256 how_long
    ) external returns (uint256);
}

interface IStakeModule {
    function is_proper_term(uint256 n_days) external pure returns (bool);

    function get_proper_term()
        external
        pure
        returns (uint256[] memory proper_terms);
}

// File: contracts/StakingToken.sol

pragma solidity >=0.6.0 <0.7.0;

// import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
// import "@openzeppelin/contracts/token/ERC20/ERC20Capped.sol";

contract StakingToken is Context, IERC20, ReentrancyGuard {
    using Address for address;
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _cap;
    uint256 private _softcap;
    address private _owner; // the supervisor with total authority
    address private _mint_account; // account which is allowed to mint new tokens

    uint256 public epoch; // the timestamp this token becomes alive

    uint256 public constant month = 30 * 86400;

    mapping(address => uint256) internal _balances;
    mapping(address => uint256) internal _reserved_balances;
    mapping(address => mapping(address => uint256)) internal _allowances;

    /// @notice A record of each accounts delegate
    mapping(address => address) public delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint256 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping(address => mapping(uint256 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping(address => uint256) public numCheckpoints;

    event BalanceReserved(address who, uint256 amount);
    event BalanceUnreserved(address who, uint256 amount);

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(
        address indexed delegator,
        address indexed fromDelegate,
        address indexed toDelegate
    );

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(
        address indexed delegate,
        uint256 previousBalance,
        uint256 newBalance
    );

    constructor(
        string memory name,
        string memory symbol,
        uint256 softcap,
        uint256 cap
    ) public {
        _mint_account = _msgSender();
        _owner = _msgSender();
        _name = name;
        _symbol = symbol;
        _decimals = 18;
        _softcap = softcap;
        _cap = cap;
    }

    modifier isAlive {
        require(epoch > 0 && block.timestamp > epoch);
        _;
    }

    modifier owner_only {
        require(_msgSender() == _owner, "StakingToken: Owner only");
        _;
    }

    modifier mint_auth_required {
        require(
            _msgSender() == _mint_account || _msgSender() == _owner,
            "StakingToken: Invalid mint request"
        );
        _;
    }

    function transfer_ownership(address new_owner)
        public
        owner_only
        nonReentrant
    {
        _owner = new_owner;
    }

    function owner() public view returns (address) {
        return _owner;
    }

    function set_epoch(uint256 ts) public owner_only nonReentrant {
        epoch = ts;
    }

    function mint_account() public view returns (address) {
        return _mint_account;
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    function cap() public view returns (uint256) {
        return _cap;
    }

    function softCap() public view returns (uint256) {
        return _softcap;
    }

    function setSoftCap(uint256 n) public owner_only nonReentrant {
        require(n <= _cap, "StakingToken: softcap overflows cap");
        require(
            n >= _totalSupply,
            "StakingToken: softcap must be higher than total supply"
        );
        _softcap = n;
    }

    function balanceOf(address account)
        public
        view
        override
        returns (uint256 free)
    {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        nonReentrant
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address account_owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[account_owner][spender];
    }

    function approve(address spender, uint256 amount)
        public
        virtual
        override
        nonReentrant
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override nonReentrant returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        nonReentrant
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        nonReentrant
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    function mint(uint256 amount)
        public
        virtual
        nonReentrant
        mint_auth_required
        returns (bool)
    {
        _mint(_msgSender(), amount);
        return true;
    }

    function burn(uint256 amount) public virtual nonReentrant returns (bool) {
        _burn(_msgSender(), amount);
        return true;
    }

    function burnFrom(address account, uint256 amount)
        public
        virtual
        nonReentrant
    {
        uint256 decreasedAllowance =
            allowance(account, _msgSender()).sub(
                amount,
                "ERC20: burn amount exceeds allowance"
            );

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);

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

    function _approve(
        address account_owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(
            account_owner != address(0),
            "ERC20: approve from the zero address"
        );
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        if (from == address(0)) {
            // When minting tokens
            uint256 newSupply = totalSupply().add(amount);
            require(
                newSupply <= _softcap && newSupply <= _cap,
                "ERC20Capped: cap exceeded"
            );
        }
    }

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        _moveDelegates(from, to, amount);
    }

    // end of ERC20 implementation

    function _reserve(address who, uint256 amount) internal returns (bool) {
        // make sure 'who' has enough tokens in his pocket
        require(
            _balances[who] >= amount,
            "StakingToken: user's free balance is not enough"
        );

        // move from balance into reserved_balance
        _balances[who] = _balances[who].sub(amount);
        _reserved_balances[who] = _reserved_balances[who].add(amount);

        emit BalanceReserved(who, amount);

        return true;
    }

    function _unreserve(address who, uint256 amount) internal returns (bool) {
        require(
            _reserved_balances[who] >= amount,
            "StakingToken: not enough reserved balance"
        );

        // move from reserved_balance into balance
        _reserved_balances[who] = _reserved_balances[who].sub(amount);
        _balances[who] = _balances[who].add(amount);

        emit BalanceUnreserved(who, amount);

        return true;
    }

    function reservedOf(address account) public view returns (uint256) {
        return _reserved_balances[account];
    }

    function actualBalanceOf(address account)
        public
        view
        returns (uint256 free_balance, uint256 reserved_balance)
    {
        return (_balances[account], _reserved_balances[account]);
    }

    function reserve_from(address who, uint256 amount)
        public
        mint_auth_required
        nonReentrant
        returns (bool)
    {
        return _reserve(who, amount);
    }

    function unreserve_from(address who, uint256 amount)
        public
        mint_auth_required
        nonReentrant
        returns (bool)
    {
        return _unreserve(who, amount);
    }

    function set_mint_account(address account) public owner_only nonReentrant {
        _mint_account = account;
    }

    function _moveDelegates(
        address srcRep,
        address dstRep,
        uint256 amount
    ) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint256 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld =
                    srcRepNum > 0
                        ? checkpoints[srcRep][srcRepNum - 1].votes
                        : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint256 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld =
                    dstRepNum > 0
                        ? checkpoints[dstRep][dstRepNum - 1].votes
                        : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint256 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    ) internal {
        if (
            nCheckpoints > 0 &&
            checkpoints[delegatee][nCheckpoints - 1].fromBlock == block.number
        ) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(
                block.number,
                newVotes
            );
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function getChainId() internal pure returns (uint256) {
        uint256 chainId;
        assembly {
            chainId := chainid()
        }
        return chainId;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public nonReentrant {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint256) {
        uint256 nCheckpoints = numCheckpoints[account];
        return
            nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint256 blockNumber)
        public
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "StakingToken: not yet determined");

        uint256 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint256 lower = 0;
        uint256 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint256 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint256 delegatorBalance = _balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function mint_and_lock(
        address to_whom,
        uint256 amount,
        uint256 lockspan,
        uint256 frozen_hell
    ) public mint_auth_required nonReentrant {
        require(llocks[to_whom].remains_in_lock == 0);

        LinearLockWithFrozenHell storage lk = llocks[to_whom];

        lk.total_amount = amount;
        lk.lock_span = lockspan;
        lk.frozen_hell = frozen_hell;
        lk.created_timestamp = block.timestamp;
        lk.remains_in_lock = amount;
        lk.latest_claim = block.timestamp;

        _mint(address(this), amount);
        _transferToReserved(address(this), to_whom, amount);
    }

    function can_claim() public view isAlive returns (uint256) {
        if (_reserved_balances[_msgSender()] == 0) {
            return 0;
        }
        if (llocks[_msgSender()].remains_in_lock == 0) {
            return 0;
        }

        LinearLockWithFrozenHell storage llwf = llocks[_msgSender()];

        uint256 begins = _releaseBegins(_msgSender());
        if (block.timestamp < begins) {
            return 0;
        }

        uint256 released_span = block.timestamp - begins;
        uint256 delta = 1;
        if (llwf.latest_claim > begins) {
            released_span = block.timestamp - llwf.latest_claim;
            delta = 0;
        }
        released_span = released_span.div(month);
        if (released_span <= 0) {
            return 0;
        }
        uint256 lock_span = llwf.lock_span.div(month);
        uint256 released_amount =
            llwf.total_amount.div(lock_span).mul(released_span) +
                (lock_span - 1) *
                delta;

        return released_amount;
    }

    function claim() public nonReentrant isAlive {
        require(
            _reserved_balances[_msgSender()] > 0,
            "StakingToken::claim: sender has no reserved balance"
        );
        require(
            llocks[_msgSender()].remains_in_lock > 0,
            "StakingToken::claim: sender has no locks"
        );

        LinearLockWithFrozenHell storage llwf = llocks[_msgSender()];

        uint256 begins = _releaseBegins(_msgSender());
        require(
            block.timestamp > begins,
            "StakingToken::claim: release has not begin yet"
        );

        uint256 released_span = block.timestamp - begins;
        uint256 delta = 1;
        if (llwf.latest_claim > begins) {
            released_span = block.timestamp - llwf.latest_claim;
            begins = llwf.latest_claim;
            delta = 0;
        }
        released_span = released_span.div(month);
        require(
            released_span > 0,
            "StakingToken: monthly release is not ready"
        );
        uint256 lock_span = llwf.lock_span.div(month);
        uint256 released_amount =
            llwf.total_amount.div(lock_span).mul(released_span) +
                (lock_span - 1) *
                delta;

        if (llwf.remains_in_lock <= released_amount) {
            released_amount = llwf.remains_in_lock;
            llwf.remains_in_lock = 0;
        } else {
            llwf.remains_in_lock = llwf.remains_in_lock.sub(released_amount);
        }

        llwf.latest_claim = released_span * month + begins;
        _unreserve(_msgSender(), released_amount);
    }

    struct LinearLockWithFrozenHell {
        uint256 total_amount;
        uint256 lock_span;
        uint256 frozen_hell;
        uint256 latest_claim;
        uint256 created_timestamp;
        uint256 remains_in_lock;
    }

    mapping(address => LinearLockWithFrozenHell) public llocks;

    function _transferToReserved(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _reserved_balances[recipient] = _reserved_balances[recipient].add(
            amount
        );

        emit Transfer(sender, recipient, amount);
        emit BalanceReserved(recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    function _releaseBegins(address who) internal view returns (uint256) {
        LinearLockWithFrozenHell storage llwf = llocks[who];
        uint256 begins = 0;
        if (llwf.created_timestamp > epoch) {
            begins = llwf.created_timestamp;
        } else {
            begins = epoch;
        }
        if (llwf.frozen_hell > 0) {
            begins = begins.add(llwf.frozen_hell);
        }
        return begins;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"softcap","type":"uint256"},{"internalType":"uint256","name":"cap","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BalanceReserved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"who","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BalanceUnreserved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","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"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"actualBalanceOf","outputs":[{"internalType":"uint256","name":"free_balance","type":"uint256"},{"internalType":"uint256","name":"reserved_balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account_owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"free","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"can_claim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"checkpoints","outputs":[{"internalType":"uint256","name":"fromBlock","type":"uint256"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"llocks","outputs":[{"internalType":"uint256","name":"total_amount","type":"uint256"},{"internalType":"uint256","name":"lock_span","type":"uint256"},{"internalType":"uint256","name":"frozen_hell","type":"uint256"},{"internalType":"uint256","name":"latest_claim","type":"uint256"},{"internalType":"uint256","name":"created_timestamp","type":"uint256"},{"internalType":"uint256","name":"remains_in_lock","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mint_account","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to_whom","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"lockspan","type":"uint256"},{"internalType":"uint256","name":"frozen_hell","type":"uint256"}],"name":"mint_and_lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"month","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve_from","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"reservedOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"setSoftCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ts","type":"uint256"}],"name":"set_epoch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"set_mint_account","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"softCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"new_owner","type":"address"}],"name":"transfer_ownership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unreserve_from","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620052a2380380620052a2833981810160405260808110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190805190602001909291905050506001600081905550620001e4620002da60201b60201c565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000234620002da60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600290805190602001906200028c929190620002e2565b508260039080519060200190620002a5929190620002e2565b506012600460006101000a81548160ff021916908360ff16021790555081600681905550806005819055505050505062000388565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200032557805160ff191683800117855562000356565b8280016001018555821562000356579182015b828111156200035557825182559160200191906001019062000338565b5b50905062000365919062000369565b5090565b5b80821115620003845760008160009055506001016200036a565b5090565b614f0a80620003986000396000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c806379cc679011610130578063a9059cbb116100b8578063d5cf5c721161007c578063d5cf5c7214610c1b578063dd62ed3e14610c49578063de3ff0f314610cc1578063e37e174714610d23578063f0350c0414610d6757610232565b8063a9059cbb14610a6f578063b4b5ea5714610ad3578063c9322adb14610b2b578063cbd0650c14610b83578063cc33aa2114610be757610232565b806395d89b41116100ff57806395d89b41146108ab57806398063ecd1461092e5780639e961e981461094c578063a0712d68146109c7578063a457c2d714610a0b57610232565b806379cc6790146107ed5780638da5cb5b1461083b578063900cf0cf1461086f578063906a26e01461088d57610232565b806342966c68116101be5780636fcfff45116101825780636fcfff4514610659578063702921f5146106b157806370a08231146106cf578063711a6f7a14610727578063782d6fe11461078b57610232565b806342966c681461052b5780634e71d92d1461056f578063587cde1e146105795780635c19a95c146105e75780635fd257681461062b57610232565b806318160ddd1161020557806318160ddd146103e657806323b872dd14610404578063313ce56714610488578063355274ea146104a957806339509351146104c757610232565b806306fdde0314610237578063095ea7b3146102ba5780630cdfebfa1461031e57806317a950ac14610387575b600080fd5b61023f610dab565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027f578082015181840152602081019050610264565b50505050905090810190601f1680156102ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610306600480360360408110156102d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e4d565b60405180821515815260200191505060405180910390f35b61036a6004803603604081101561033457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ef4565b604051808381526020018281526020019250505060405180910390f35b6103c96004803603602081101561039d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f25565b604051808381526020018281526020019250505060405180910390f35b6103ee610fb1565b6040518082815260200191505060405180910390f35b6104706004803603606081101561041a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fbb565b60405180821515815260200191505060405180910390f35b61049061111d565b604051808260ff16815260200191505060405180910390f35b6104b1611134565b6040518082815260200191505060405180910390f35b610513600480360360408110156104dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061113e565b60405180821515815260200191505060405180910390f35b6105576004803603602081101561054157600080fd5b810190808035906020019092919050505061127a565b60405180821515815260200191505060405180910390f35b61057761131f565b005b6105bb6004803603602081101561058f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611717565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610629600480360360208110156105fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061174a565b005b6106576004803603602081101561064157600080fd5b81019080803590602001909291905050506117e0565b005b61069b6004803603602081101561066f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061193d565b6040518082815260200191505060405180910390f35b6106b9611955565b6040518082815260200191505060405180910390f35b610711600480360360208110156106e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061195c565b6040518082815260200191505060405180910390f35b6107736004803603604081101561073d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119a5565b60405180821515815260200191505060405180910390f35b6107d7600480360360408110156107a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b4e565b6040518082815260200191505060405180910390f35b6108396004803603604081101561080357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e7a565b005b610843611f65565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610877611f8f565b6040518082815260200191505060405180910390f35b610895611f95565b6040518082815260200191505060405180910390f35b6108b3611f9f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108f35780820151818401526020810190506108d8565b50505050905090810190601f1680156109205780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610936612041565b6040518082815260200191505060405180910390f35b61098e6004803603602081101561096257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612235565b60405180878152602001868152602001858152602001848152602001838152602001828152602001965050505050505060405180910390f35b6109f3600480360360208110156109dd57600080fd5b8101908080359060200190929190505050612271565b60405180821515815260200191505060405180910390f35b610a5760048036036040811015610a2157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612422565b60405180821515815260200191505060405180910390f35b610abb60048036036040811015610a8557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612578565b60405180821515815260200191505060405180910390f35b610b1560048036036020811015610ae957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061261f565b6040518082815260200191505060405180910390f35b610b6d60048036036020811015610b4157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126d3565b6040518082815260200191505060405180910390f35b610bcf60048036036040811015610b9957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061271c565b60405180821515815260200191505060405180910390f35b610bef6128c5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c4760048036036020811015610c3157600080fd5b81019080803590602001909291905050506128ef565b005b610cab60048036036040811015610c5f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b02565b6040518082815260200191505060405180910390f35b610d2160048036036080811015610cd757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190929190505050612b89565b005b610d6560048036036020811015610d3957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e02565b005b610da960048036036020811015610d7d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f99565b005b606060028054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e435780601f10610e1857610100808354040283529160200191610e43565b820191906000526020600020905b815481529060010190602001808311610e2657829003601f168201915b5050505050905090565b600060026000541415610ec8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550610ee2610edb613130565b8484613138565b60019050600160008190555092915050565b600e602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205491509150915091565b6000600154905090565b600060026000541415611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555061104984848461332f565b61110a84611055613130565b61110585604051806060016040528060288152602001614d4e60289139600c60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110bb613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ff9092919063ffffffff16565b613138565b6001905060016000819055509392505050565b6000600460009054906101000a900460ff16905090565b6000600554905090565b6000600260005414156111b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506112686111cc613130565b8461126385600c60006111dd613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136bf90919063ffffffff16565b613138565b60019050600160008190555092915050565b6000600260005414156112f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555061130e611308613130565b83613747565b600190506001600081905550919050565b60026000541415611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555060006009541180156113b3575060095442115b6113bc57600080fd5b6000600b60006113ca613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161145b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180614d766033913960400191505060405180910390fd5b600060106000611469613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050154116114fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614e656028913960400191505060405180910390fd5b60006010600061150b613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000611559611554613130565b613919565b90508042116115b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180614dcd602e913960400191505060405180910390fd5b6000814203905060006001905082846003015411156115e15783600301544203915083600301549250600090505b6115f762278d00836139b090919063ffffffff16565b915060008211611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614be9602a913960400191505060405180910390fd5b600061166e62278d0086600101546139b090919063ffffffff16565b905060008260018303026116a185611693858a600001546139b090919063ffffffff16565b6139fa90919063ffffffff16565b019050808660050154116116c55785600501549050600086600501819055506116e5565b6116dc818760050154613a8090919063ffffffff16565b86600501819055505b8462278d008502018660030181905550611706611700613130565b82613aca565b505050505050506001600081905550565b600d6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260005414156117c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506117d53382613ced565b600160008190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611821613130565b73ffffffffffffffffffffffffffffffffffffffff16146118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f5374616b696e67546f6b656e3a204f776e6572206f6e6c79000000000000000081525060200191505060405180910390fd5b60026000541415611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555080600981905550600160008190555050565b600f6020528060005260406000206000915090505481565b62278d0081565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119e8613130565b73ffffffffffffffffffffffffffffffffffffffff161480611a5e5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a46613130565b73ffffffffffffffffffffffffffffffffffffffff16145b611ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614ca66022913960400191505060405180910390fd5b60026000541415611b2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550611b3e8383613e95565b9050600160008190555092915050565b6000438210611bc5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5374616b696e67546f6b656e3a206e6f74207965742064657465726d696e656481525060200191505060405180910390fd5b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811415611c1c576000915050611e74565b82600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840381526020019081526020016000206000015411611cd857600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018303815260200190815260200160002060010154915050611e74565b82600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000808152602001908152602001600020600001541115611d3d576000915050611e74565b6000806001830390505b81811115611e1a576000600283830381611d5d57fe5b0482039050611d6a614bab565b600e60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206040518060400160405290816000820154815260200160018201548152505090508681600001511415611df857806020015195505050505050611e74565b8681600001511015611e0c57819350611e13565b6001820392505b5050611d47565b600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206001015493505050505b92915050565b60026000541415611ef3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506000611f3a82604051806060016040528060248152602001614da960249139611f2b86611f26613130565b612b02565b6135ff9092919063ffffffff16565b9050611f4e83611f48613130565b83613138565b611f588383613747565b5060016000819055505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b6000600654905090565b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120375780601f1061200c57610100808354040283529160200191612037565b820191906000526020600020905b81548152906001019060200180831161201a57829003601f168201915b5050505050905090565b600080600954118015612055575060095442115b61205e57600080fd5b6000600b600061206c613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156120b65760009050612232565b6000601060006120c4613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005015414156121115760009050612232565b60006010600061211f613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600061216d612168613130565b613919565b90508042101561218257600092505050612232565b6000814203905060006001905082846003015411156121a957836003015442039150600090505b6121bf62278d00836139b090919063ffffffff16565b9150600082116121d6576000945050505050612232565b60006121f262278d0086600101546139b090919063ffffffff16565b9050600082600183030261222585612217858a600001546139b090919063ffffffff16565b6139fa90919063ffffffff16565b0190508096505050505050505b90565b60106020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154908060050154905086565b6000600260005414156122ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612335613130565b73ffffffffffffffffffffffffffffffffffffffff1614806123ab5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612393613130565b73ffffffffffffffffffffffffffffffffffffffff16145b612400576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614ca66022913960400191505060405180910390fd5b61241161240b613130565b836140b8565b600190506001600081905550919050565b60006002600054141561249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506125666124b0613130565b8461256185604051806060016040528060258152602001614eb060259139600c60006124da613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ff9092919063ffffffff16565b613138565b60019050600160008190555092915050565b6000600260005414156125f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555061260d612606613130565b848461332f565b60019050600160008190555092915050565b600080600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081116126735760006126cb565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183038152602001908152602001600020600101545b915050919050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661275f613130565b73ffffffffffffffffffffffffffffffffffffffff1614806127d55750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166127bd613130565b73ffffffffffffffffffffffffffffffffffffffff16145b61282a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614ca66022913960400191505060405180910390fd5b600260005414156128a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506128b58383613aca565b9050600160008190555092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612930613130565b73ffffffffffffffffffffffffffffffffffffffff16146129b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f5374616b696e67546f6b656e3a204f776e6572206f6e6c79000000000000000081525060200191505060405180910390fd5b60026000541415612a32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550600554811115612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614e8d6023913960400191505060405180910390fd5b600154811015612af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180614cf76036913960400191505060405180910390fd5b80600681905550600160008190555050565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612bca613130565b73ffffffffffffffffffffffffffffffffffffffff161480612c405750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612c28613130565b73ffffffffffffffffffffffffffffffffffffffff16145b612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614ca66022913960400191505060405180910390fd5b60026000541415612d0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506000601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005015414612d6557600080fd5b6000601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050838160000181905550828160010181905550818160020181905550428160040181905550838160050181905550428160030181905550612de830856140b8565b612df330868661428d565b50600160008190555050505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612e43613130565b73ffffffffffffffffffffffffffffffffffffffff1614612ecc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f5374616b696e67546f6b656e3a204f776e6572206f6e6c79000000000000000081525060200191505060405180910390fd5b60026000541415612f45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160008190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612fda613130565b73ffffffffffffffffffffffffffffffffffffffff1614613063576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f5374616b696e67546f6b656e3a204f776e6572206f6e6c79000000000000000081525060200191505060405180910390fd5b600260005414156130dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160008190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614e416024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613244576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614c356022913960400191505060405180910390fd5b80600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614e1c6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561343b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614bc66023913960400191505060405180910390fd5b6134468383836145b2565b6134b281604051806060016040528060268152602001614c8060269139600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ff9092919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061354781600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136bf90919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a36135fa838383614692565b505050565b60008383111582906136ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613671578082015181840152602081019050613656565b50505050905090810190601f16801561369e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101561373d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614dfb6021913960400191505060405180910390fd5b6137d9826000836145b2565b61384581604051806060016040528060228152602001614c1360229139600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ff9092919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061389d81600154613a8090919063ffffffff16565b600181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a361391582600083614692565b5050565b600080601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600060095482600401541115613979578160040154905061397f565b60095490505b6000826002015411156139a6576139a38260020154826136bf90919063ffffffff16565b90505b8092505050919050565b60006139f283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506146a2565b905092915050565b600080831415613a0d5760009050613a7a565b6000828402905082848281613a1e57fe5b0414613a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614d2d6021913960400191505060405180910390fd5b809150505b92915050565b6000613ac283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506135ff565b905092915050565b600081600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015613b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614c576029913960400191505060405180910390fd5b613bb682600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a8090919063ffffffff16565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c4b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136bf90919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f9203a017ec12fc94b6cad1efbd686fe29106563fb8a453b242a210de436f4f5c8383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a16001905092915050565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4613e8f828483614768565b50505050565b600081600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015613f2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614cc8602f913960400191505060405180910390fd5b613f8182600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a8090919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061401682600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136bf90919063ffffffff16565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f19eed47758880b43e710d4e572e5412b5e69bd25ab4760db2c5274f0c3ab9a718383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a16001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561415b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b614167600083836145b2565b61417c816001546136bf90919063ffffffff16565b6001819055506141d481600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136bf90919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a361428960008383614692565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614313576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614e1c6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614bc66023913960400191505060405180910390fd5b6143a48383836145b2565b61441081604051806060016040528060268152602001614c8060269139600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ff9092919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144a581600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136bf90919063ffffffff16565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a37f19eed47758880b43e710d4e572e5412b5e69bd25ab4760db2c5274f0c3ab9a718282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a16145ad838383614692565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561468d576000614603826145f5610fb1565b6136bf90919063ffffffff16565b9050600654811115801561461957506005548111155b61468b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b505b505050565b61469d838383614768565b505050565b6000808311829061474e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156147135780820151818401526020810190506146f8565b50505050905090810190601f1680156147405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161475a57fe5b049050809150509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156147a45750600081115b156149bc57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146148b2576000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000808211614831576000614889565b600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184038152602001908152602001600020600101545b905060006148a08483613a8090919063ffffffff16565b90506148ae868484846149c1565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146149bb576000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600080821161493a576000614992565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184038152602001908152602001600020600101545b905060006149a984836136bf90919063ffffffff16565b90506149b7858484846149c1565b5050505b5b505050565b600083118015614a26575043600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018603815260200190815260200160002060000154145b15614a8b5780600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018603815260200190815260200160002060010181905550614b4f565b604051806040016040528043815260200182815250600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020600082015181600001556020820151816001015590505060018301600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051808381526020018281526020019250505060405180910390a250505050565b60405180604001604052806000815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735374616b696e67546f6b656e3a206d6f6e74686c792072656c65617365206973206e6f7420726561647945524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573735374616b696e67546f6b656e3a206e6f7420656e6f7567682072657365727665642062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655374616b696e67546f6b656e3a20496e76616c6964206d696e7420726571756573745374616b696e67546f6b656e3a2075736572277320667265652062616c616e6365206973206e6f7420656e6f7567685374616b696e67546f6b656e3a20736f6674636170206d75737420626520686967686572207468616e20746f74616c20737570706c79536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655374616b696e67546f6b656e3a3a636c61696d3a2073656e64657220686173206e6f2072657365727665642062616c616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63655374616b696e67546f6b656e3a3a636c61696d3a2072656c6561736520686173206e6f7420626567696e2079657445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735374616b696e67546f6b656e3a3a636c61696d3a2073656e64657220686173206e6f206c6f636b735374616b696e67546f6b656e3a20736f6674636170206f766572666c6f77732063617045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202da2e7107a8638b7fd94c004de5b65ec7f0f027da61b5517508766a984604b5c64736f6c634300060c0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000204fce5e3e250261100000000000000000000000000000000000000000000000000000000000000000000004446144610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044441444100000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c806379cc679011610130578063a9059cbb116100b8578063d5cf5c721161007c578063d5cf5c7214610c1b578063dd62ed3e14610c49578063de3ff0f314610cc1578063e37e174714610d23578063f0350c0414610d6757610232565b8063a9059cbb14610a6f578063b4b5ea5714610ad3578063c9322adb14610b2b578063cbd0650c14610b83578063cc33aa2114610be757610232565b806395d89b41116100ff57806395d89b41146108ab57806398063ecd1461092e5780639e961e981461094c578063a0712d68146109c7578063a457c2d714610a0b57610232565b806379cc6790146107ed5780638da5cb5b1461083b578063900cf0cf1461086f578063906a26e01461088d57610232565b806342966c68116101be5780636fcfff45116101825780636fcfff4514610659578063702921f5146106b157806370a08231146106cf578063711a6f7a14610727578063782d6fe11461078b57610232565b806342966c681461052b5780634e71d92d1461056f578063587cde1e146105795780635c19a95c146105e75780635fd257681461062b57610232565b806318160ddd1161020557806318160ddd146103e657806323b872dd14610404578063313ce56714610488578063355274ea146104a957806339509351146104c757610232565b806306fdde0314610237578063095ea7b3146102ba5780630cdfebfa1461031e57806317a950ac14610387575b600080fd5b61023f610dab565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561027f578082015181840152602081019050610264565b50505050905090810190601f1680156102ac5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610306600480360360408110156102d057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e4d565b60405180821515815260200191505060405180910390f35b61036a6004803603604081101561033457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ef4565b604051808381526020018281526020019250505060405180910390f35b6103c96004803603602081101561039d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f25565b604051808381526020018281526020019250505060405180910390f35b6103ee610fb1565b6040518082815260200191505060405180910390f35b6104706004803603606081101561041a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fbb565b60405180821515815260200191505060405180910390f35b61049061111d565b604051808260ff16815260200191505060405180910390f35b6104b1611134565b6040518082815260200191505060405180910390f35b610513600480360360408110156104dd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061113e565b60405180821515815260200191505060405180910390f35b6105576004803603602081101561054157600080fd5b810190808035906020019092919050505061127a565b60405180821515815260200191505060405180910390f35b61057761131f565b005b6105bb6004803603602081101561058f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611717565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610629600480360360208110156105fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061174a565b005b6106576004803603602081101561064157600080fd5b81019080803590602001909291905050506117e0565b005b61069b6004803603602081101561066f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061193d565b6040518082815260200191505060405180910390f35b6106b9611955565b6040518082815260200191505060405180910390f35b610711600480360360208110156106e557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061195c565b6040518082815260200191505060405180910390f35b6107736004803603604081101561073d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506119a5565b60405180821515815260200191505060405180910390f35b6107d7600480360360408110156107a157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b4e565b6040518082815260200191505060405180910390f35b6108396004803603604081101561080357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e7a565b005b610843611f65565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610877611f8f565b6040518082815260200191505060405180910390f35b610895611f95565b6040518082815260200191505060405180910390f35b6108b3611f9f565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108f35780820151818401526020810190506108d8565b50505050905090810190601f1680156109205780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610936612041565b6040518082815260200191505060405180910390f35b61098e6004803603602081101561096257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612235565b60405180878152602001868152602001858152602001848152602001838152602001828152602001965050505050505060405180910390f35b6109f3600480360360208110156109dd57600080fd5b8101908080359060200190929190505050612271565b60405180821515815260200191505060405180910390f35b610a5760048036036040811015610a2157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612422565b60405180821515815260200191505060405180910390f35b610abb60048036036040811015610a8557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612578565b60405180821515815260200191505060405180910390f35b610b1560048036036020811015610ae957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061261f565b6040518082815260200191505060405180910390f35b610b6d60048036036020811015610b4157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506126d3565b6040518082815260200191505060405180910390f35b610bcf60048036036040811015610b9957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061271c565b60405180821515815260200191505060405180910390f35b610bef6128c5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610c4760048036036020811015610c3157600080fd5b81019080803590602001909291905050506128ef565b005b610cab60048036036040811015610c5f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612b02565b6040518082815260200191505060405180910390f35b610d2160048036036080811015610cd757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190929190505050612b89565b005b610d6560048036036020811015610d3957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612e02565b005b610da960048036036020811015610d7d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612f99565b005b606060028054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e435780601f10610e1857610100808354040283529160200191610e43565b820191906000526020600020905b815481529060010190602001808311610e2657829003601f168201915b5050505050905090565b600060026000541415610ec8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550610ee2610edb613130565b8484613138565b60019050600160008190555092915050565b600e602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205491509150915091565b6000600154905090565b600060026000541415611036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555061104984848461332f565b61110a84611055613130565b61110585604051806060016040528060288152602001614d4e60289139600c60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006110bb613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ff9092919063ffffffff16565b613138565b6001905060016000819055509392505050565b6000600460009054906101000a900460ff16905090565b6000600554905090565b6000600260005414156111b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506112686111cc613130565b8461126385600c60006111dd613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136bf90919063ffffffff16565b613138565b60019050600160008190555092915050565b6000600260005414156112f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555061130e611308613130565b83613747565b600190506001600081905550919050565b60026000541415611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555060006009541180156113b3575060095442115b6113bc57600080fd5b6000600b60006113ca613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161145b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526033815260200180614d766033913960400191505060405180910390fd5b600060106000611469613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050154116114fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614e656028913960400191505060405180910390fd5b60006010600061150b613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000611559611554613130565b613919565b90508042116115b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180614dcd602e913960400191505060405180910390fd5b6000814203905060006001905082846003015411156115e15783600301544203915083600301549250600090505b6115f762278d00836139b090919063ffffffff16565b915060008211611652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614be9602a913960400191505060405180910390fd5b600061166e62278d0086600101546139b090919063ffffffff16565b905060008260018303026116a185611693858a600001546139b090919063ffffffff16565b6139fa90919063ffffffff16565b019050808660050154116116c55785600501549050600086600501819055506116e5565b6116dc818760050154613a8090919063ffffffff16565b86600501819055505b8462278d008502018660030181905550611706611700613130565b82613aca565b505050505050506001600081905550565b600d6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260005414156117c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506117d53382613ced565b600160008190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611821613130565b73ffffffffffffffffffffffffffffffffffffffff16146118aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f5374616b696e67546f6b656e3a204f776e6572206f6e6c79000000000000000081525060200191505060405180910390fd5b60026000541415611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555080600981905550600160008190555050565b600f6020528060005260406000206000915090505481565b62278d0081565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166119e8613130565b73ffffffffffffffffffffffffffffffffffffffff161480611a5e5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611a46613130565b73ffffffffffffffffffffffffffffffffffffffff16145b611ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614ca66022913960400191505060405180910390fd5b60026000541415611b2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550611b3e8383613e95565b9050600160008190555092915050565b6000438210611bc5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5374616b696e67546f6b656e3a206e6f74207965742064657465726d696e656481525060200191505060405180910390fd5b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811415611c1c576000915050611e74565b82600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840381526020019081526020016000206000015411611cd857600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018303815260200190815260200160002060010154915050611e74565b82600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000808152602001908152602001600020600001541115611d3d576000915050611e74565b6000806001830390505b81811115611e1a576000600283830381611d5d57fe5b0482039050611d6a614bab565b600e60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206040518060400160405290816000820154815260200160018201548152505090508681600001511415611df857806020015195505050505050611e74565b8681600001511015611e0c57819350611e13565b6001820392505b5050611d47565b600e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206001015493505050505b92915050565b60026000541415611ef3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506000611f3a82604051806060016040528060248152602001614da960249139611f2b86611f26613130565b612b02565b6135ff9092919063ffffffff16565b9050611f4e83611f48613130565b83613138565b611f588383613747565b5060016000819055505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b6000600654905090565b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120375780601f1061200c57610100808354040283529160200191612037565b820191906000526020600020905b81548152906001019060200180831161201a57829003601f168201915b5050505050905090565b600080600954118015612055575060095442115b61205e57600080fd5b6000600b600061206c613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156120b65760009050612232565b6000601060006120c4613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005015414156121115760009050612232565b60006010600061211f613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600061216d612168613130565b613919565b90508042101561218257600092505050612232565b6000814203905060006001905082846003015411156121a957836003015442039150600090505b6121bf62278d00836139b090919063ffffffff16565b9150600082116121d6576000945050505050612232565b60006121f262278d0086600101546139b090919063ffffffff16565b9050600082600183030261222585612217858a600001546139b090919063ffffffff16565b6139fa90919063ffffffff16565b0190508096505050505050505b90565b60106020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154908060050154905086565b6000600260005414156122ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612335613130565b73ffffffffffffffffffffffffffffffffffffffff1614806123ab5750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612393613130565b73ffffffffffffffffffffffffffffffffffffffff16145b612400576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614ca66022913960400191505060405180910390fd5b61241161240b613130565b836140b8565b600190506001600081905550919050565b60006002600054141561249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506125666124b0613130565b8461256185604051806060016040528060258152602001614eb060259139600c60006124da613130565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ff9092919063ffffffff16565b613138565b60019050600160008190555092915050565b6000600260005414156125f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555061260d612606613130565b848461332f565b60019050600160008190555092915050565b600080600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600081116126735760006126cb565b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600183038152602001908152602001600020600101545b915050919050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661275f613130565b73ffffffffffffffffffffffffffffffffffffffff1614806127d55750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166127bd613130565b73ffffffffffffffffffffffffffffffffffffffff16145b61282a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614ca66022913960400191505060405180910390fd5b600260005414156128a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506128b58383613aca565b9050600160008190555092915050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612930613130565b73ffffffffffffffffffffffffffffffffffffffff16146129b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f5374616b696e67546f6b656e3a204f776e6572206f6e6c79000000000000000081525060200191505060405180910390fd5b60026000541415612a32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6002600081905550600554811115612a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614e8d6023913960400191505060405180910390fd5b600154811015612af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526036815260200180614cf76036913960400191505060405180910390fd5b80600681905550600160008190555050565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612bca613130565b73ffffffffffffffffffffffffffffffffffffffff161480612c405750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612c28613130565b73ffffffffffffffffffffffffffffffffffffffff16145b612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614ca66022913960400191505060405180910390fd5b60026000541415612d0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026000819055506000601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005015414612d6557600080fd5b6000601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050838160000181905550828160010181905550818160020181905550428160040181905550838160050181905550428160030181905550612de830856140b8565b612df330868661428d565b50600160008190555050505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612e43613130565b73ffffffffffffffffffffffffffffffffffffffff1614612ecc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f5374616b696e67546f6b656e3a204f776e6572206f6e6c79000000000000000081525060200191505060405180910390fd5b60026000541415612f45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160008190555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612fda613130565b73ffffffffffffffffffffffffffffffffffffffff1614613063576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f5374616b696e67546f6b656e3a204f776e6572206f6e6c79000000000000000081525060200191505060405180910390fd5b600260005414156130dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260008190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160008190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614e416024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613244576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614c356022913960400191505060405180910390fd5b80600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614e1c6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561343b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614bc66023913960400191505060405180910390fd5b6134468383836145b2565b6134b281604051806060016040528060268152602001614c8060269139600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ff9092919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061354781600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136bf90919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a36135fa838383614692565b505050565b60008383111582906136ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613671578082015181840152602081019050613656565b50505050905090810190601f16801561369e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101561373d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137cd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614dfb6021913960400191505060405180910390fd5b6137d9826000836145b2565b61384581604051806060016040528060228152602001614c1360229139600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ff9092919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061389d81600154613a8090919063ffffffff16565b600181905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a361391582600083614692565b5050565b600080601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600060095482600401541115613979578160040154905061397f565b60095490505b6000826002015411156139a6576139a38260020154826136bf90919063ffffffff16565b90505b8092505050919050565b60006139f283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506146a2565b905092915050565b600080831415613a0d5760009050613a7a565b6000828402905082848281613a1e57fe5b0414613a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614d2d6021913960400191505060405180910390fd5b809150505b92915050565b6000613ac283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506135ff565b905092915050565b600081600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015613b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614c576029913960400191505060405180910390fd5b613bb682600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a8090919063ffffffff16565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613c4b82600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136bf90919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f9203a017ec12fc94b6cad1efbd686fe29106563fb8a453b242a210de436f4f5c8383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a16001905092915050565b6000600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4613e8f828483614768565b50505050565b600081600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015613f2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180614cc8602f913960400191505060405180910390fd5b613f8182600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613a8090919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061401682600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136bf90919063ffffffff16565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055507f19eed47758880b43e710d4e572e5412b5e69bd25ab4760db2c5274f0c3ab9a718383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a16001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561415b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b614167600083836145b2565b61417c816001546136bf90919063ffffffff16565b6001819055506141d481600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136bf90919063ffffffff16565b600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a361428960008383614692565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614313576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614e1c6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614399576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614bc66023913960400191505060405180910390fd5b6143a48383836145b2565b61441081604051806060016040528060268152602001614c8060269139600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546135ff9092919063ffffffff16565b600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506144a581600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136bf90919063ffffffff16565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a37f19eed47758880b43e710d4e572e5412b5e69bd25ab4760db2c5274f0c3ab9a718282604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a16145ad838383614692565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561468d576000614603826145f5610fb1565b6136bf90919063ffffffff16565b9050600654811115801561461957506005548111155b61468b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f45524332304361707065643a206361702065786365656465640000000000000081525060200191505060405180910390fd5b505b505050565b61469d838383614768565b505050565b6000808311829061474e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156147135780820151818401526020810190506146f8565b50505050905090810190601f1680156147405780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161475a57fe5b049050809150509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156147a45750600081115b156149bc57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146148b2576000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000808211614831576000614889565b600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184038152602001908152602001600020600101545b905060006148a08483613a8090919063ffffffff16565b90506148ae868484846149c1565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146149bb576000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600080821161493a576000614992565b600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000600184038152602001908152602001600020600101545b905060006149a984836136bf90919063ffffffff16565b90506149b7858484846149c1565b5050505b5b505050565b600083118015614a26575043600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018603815260200190815260200160002060000154145b15614a8b5780600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600060018603815260200190815260200160002060010181905550614b4f565b604051806040016040528043815260200182815250600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020600082015181600001556020820151816001015590505060018301600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051808381526020018281526020019250505060405180910390a250505050565b60405180604001604052806000815260200160008152509056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573735374616b696e67546f6b656e3a206d6f6e74686c792072656c65617365206973206e6f7420726561647945524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f20616464726573735374616b696e67546f6b656e3a206e6f7420656e6f7567682072657365727665642062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655374616b696e67546f6b656e3a20496e76616c6964206d696e7420726571756573745374616b696e67546f6b656e3a2075736572277320667265652062616c616e6365206973206e6f7420656e6f7567685374616b696e67546f6b656e3a20736f6674636170206d75737420626520686967686572207468616e20746f74616c20737570706c79536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655374616b696e67546f6b656e3a3a636c61696d3a2073656e64657220686173206e6f2072657365727665642062616c616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63655374616b696e67546f6b656e3a3a636c61696d3a2072656c6561736520686173206e6f7420626567696e2079657445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735374616b696e67546f6b656e3a3a636c61696d3a2073656e64657220686173206e6f206c6f636b735374616b696e67546f6b656e3a20736f6674636170206f766572666c6f77732063617045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202da2e7107a8638b7fd94c004de5b65ec7f0f027da61b5517508766a984604b5c64736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000033b2e3c9fd0803ce80000000000000000000000000000000000000000000000204fce5e3e250261100000000000000000000000000000000000000000000000000000000000000000000004446144610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044441444100000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): DaDa
Arg [1] : symbol (string): DADA
Arg [2] : softcap (uint256): 1000000000000000000000000000
Arg [3] : cap (uint256): 10000000000000000000000000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [3] : 0000000000000000000000000000000000000000204fce5e3e25026110000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4461446100000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4441444100000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

24251:21197:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27384:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28888:232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25404:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;35120:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;27661:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29128:467;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27570:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27769:75;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29603:322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30581:141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42269:1639;;;:::i;:::-;;25114:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37916:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27184:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25542:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24819:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28244:165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35346:193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38900:1251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30730:402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27097:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;24748:20;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27852:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27475:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41203:1058;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44154:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30363:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;29933:422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;28417:238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38232:237;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34992:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35547:197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27283:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27943:293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;28663:217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40544:651;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35752:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26942:147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27384:83;27421:13;27454:5;27447:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27384:83;:::o;28888:232::-;29029:4;22027:1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1;22765:7;:18;;;;29051:39:::1;29060:12;:10;:12::i;:::-;29074:7;29083:6;29051:8;:39::i;:::-;29108:4;29101:11;;21983:1:::0;22944:7;:22;;;;28888:232;;;;:::o;25404:69::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35120:218::-;35210:20;35232:24;35282:9;:18;35292:7;35282:18;;;;;;;;;;;;;;;;35302;:27;35321:7;35302:27;;;;;;;;;;;;;;;;35274:56;;;;35120:218;;;:::o;27661:100::-;27714:7;27741:12;;27734:19;;27661:100;:::o;29128:467::-;29281:4;22027:1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1;22765:7;:18;;;;29298:36:::1;29308:6;29316:9;29327:6;29298:9;:36::i;:::-;29345:220;29368:6;29389:12;:10;:12::i;:::-;29416:138;29472:6;29416:138;;;;;;;;;;;;;;;;;:11;:19;29428:6;29416:19;;;;;;;;;;;;;;;:33;29436:12;:10;:12::i;:::-;29416:33;;;;;;;;;;;;;;;;:37;;:138;;;;;:::i;:::-;29345:8;:220::i;:::-;29583:4;29576:11;;21983:1:::0;22944:7;:22;;;;29128:467;;;;;:::o;27570:83::-;27611:5;27636:9;;;;;;;;;;;27629:16;;27570:83;:::o;27769:75::-;27805:7;27832:4;;27825:11;;27769:75;:::o;29603:322::-;29740:4;22027:1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1;22765:7;:18;;;;29762:133:::1;29785:12;:10;:12::i;:::-;29812:7;29834:50;29873:10;29834:11;:25;29846:12;:10;:12::i;:::-;29834:25;;;;;;;;;;;;;;;:34;29860:7;29834:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;29762:8;:133::i;:::-;29913:4;29906:11;;21983:1:::0;22944:7;:22;;;;29603:322;;;;:::o;30581:141::-;30648:4;22027:1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1;22765:7;:18;;;;30665:27:::1;30671:12;:10;:12::i;:::-;30685:6;30665:5;:27::i;:::-;30710:4;30703:11;;21983:1:::0;22944:7;:22;;;;30581:141;;;:::o;42269:1639::-;22027:1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1;22765:7;:18;;;;26561:1:::1;26553:5;;:9;:36;;;;;26584:5;;26566:15;:23;26553:36;26545:45;;;::::0;::::1;;42382:1:::2;42347:18;:32;42366:12;:10;:12::i;:::-;42347:32;;;;;;;;;;;;;;;;:36;42325:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42534:1;42495:6;:20;42502:12;:10;:12::i;:::-;42495:20;;;;;;;;;;;;;;;:36;;;:40;42473:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42616:37;42656:6;:20;42663:12;:10;:12::i;:::-;42656:20;;;;;;;;;;;;;;;42616:60;;42689:14;42706:28;42721:12;:10;:12::i;:::-;42706:14;:28::i;:::-;42689:45;;42785:6;42767:15;:24;42745:120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42878:21;42920:6;42902:15;:24;42878:48;;42937:13;42953:1;42937:17;;42989:6;42969:4;:17;;;:26;42965:175;;;43046:4;:17;;;43028:15;:35;43012:51;;43087:4;:17;;;43078:26;;43127:1;43119:9;;42965:175;43166:24;24851:10;43166:13;:17;;:24;;;;:::i;:::-;43150:40;;43239:1;43223:13;:17;43201:109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43321:17;43341:25;24851:10;43341:4;:14;;;:18;;:25;;;;:::i;:::-;43321:45;;43377:23;43522:5;43500:1;43488:9;:13;43487:40;43416:51;43453:13;43416:32;43438:9;43416:4;:17;;;:21;;:32;;;;:::i;:::-;:36;;:51;;;;:::i;:::-;:111;43377:150;;43568:15;43544:4;:20;;;:39;43540:246;;43618:4;:20;;;43600:38;;43676:1;43653:4;:20;;:24;;;;43540:246;;;43733:41;43758:15;43733:4;:20;;;:24;;:41;;;;:::i;:::-;43710:4;:20;;:64;;;;43540:246;43842:6;24851:10;43818:13;:21;:30;43798:4;:17;;:50;;;;43859:41;43870:12;:10;:12::i;:::-;43884:15;43859:10;:41::i;:::-;;26601:1;;;;;;21983::::0;22944:7;:22;;;;42269:1639::o;25114:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;37916:115::-;22027:1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1;22765:7;:18;;;;37991:32:::1;38001:10;38013:9;37991;:32::i;:::-;21983:1:::0;22944:7;:22;;;;37916:115;:::o;27184:91::-;26673:6;;;;;;;;;;;26657:22;;:12;:10;:12::i;:::-;:22;;;26649:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1:::1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22027:1;22765:7;:18;;;;27265:2:::2;27257:5;:10;;;;21983:1:::1;22944:7;:22;;;;27184:91:::0;:::o;25542:49::-;;;;;;;;;;;;;;;;;:::o;24819:42::-;24851:10;24819:42;:::o;28244:165::-;28346:12;28383:9;:18;28393:7;28383:18;;;;;;;;;;;;;;;;28376:25;;28244:165;;;:::o;35346:193::-;35481:4;26813:13;;;;;;;;;;;26797:29;;:12;:10;:12::i;:::-;:29;;;:55;;;;26846:6;;;;;;;;;;;26830:22;;:12;:10;:12::i;:::-;:22;;;26797:55;26775:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1:::1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22027:1;22765:7;:18;;;;35510:21:::2;35519:3;35524:6;35510:8;:21::i;:::-;35503:28;;21983:1:::1;22944:7;:22;;;;35346:193:::0;;;;:::o;38900:1251::-;39009:7;39056:12;39042:11;:26;39034:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39118:20;39141:14;:23;39156:7;39141:23;;;;;;;;;;;;;;;;39118:46;;39195:1;39179:12;:17;39175:58;;;39220:1;39213:8;;;;;39175:58;39345:11;39293;:20;39305:7;39293:20;;;;;;;;;;;;;;;:38;39329:1;39314:12;:16;39293:38;;;;;;;;;;;:48;;;:63;39289:147;;39380:11;:20;39392:7;39380:20;;;;;;;;;;;;;;;:38;39416:1;39401:12;:16;39380:38;;;;;;;;;;;:44;;;39373:51;;;;;39289:147;39533:11;39497;:20;39509:7;39497:20;;;;;;;;;;;;;;;:23;39518:1;39497:23;;;;;;;;;;;:33;;;:47;39493:88;;;39568:1;39561:8;;;;;39493:88;39593:13;39621;39652:1;39637:12;:16;39621:32;;39664:429;39679:5;39671;:13;39664:429;;;39701:14;39744:1;39735:5;39727;:13;39726:19;;;;;;39718:5;:27;39701:44;;39787:20;;:::i;:::-;39810:11;:20;39822:7;39810:20;;;;;;;;;;;;;;;:28;39831:6;39810:28;;;;;;;;;;;39787:51;;;;;;;;;;;;;;;;;;;;;;;;;;;39873:11;39857:2;:12;;;:27;39853:229;;;39912:2;:8;;;39905:15;;;;;;;;;39853:229;39961:11;39946:2;:12;;;:26;39942:140;;;40001:6;39993:14;;39942:140;;;40065:1;40056:6;:10;40048:18;;39942:140;39664:429;;;;;40110:11;:20;40122:7;40110:20;;;;;;;;;;;;;;;:27;40131:5;40110:27;;;;;;;;;;;:33;;;40103:40;;;;;38900:1251;;;;;:::o;30730:402::-;22027:1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1;22765:7;:18;;;;30852:26:::1;30894:133;30949:6;30894:133;;;;;;;;;;;;;;;;;:32;30904:7;30913:12;:10;:12::i;:::-;30894:9;:32::i;:::-;:36;;:133;;;;;:::i;:::-;30852:175;;31040:51;31049:7;31058:12;:10;:12::i;:::-;31072:18;31040:8;:51::i;:::-;31102:22;31108:7;31117:6;31102:5;:22::i;:::-;22796:1;21983::::0;22944:7;:22;;;;30730:402;;:::o;27097:79::-;27135:7;27162:6;;;;;;;;;;;27155:13;;27097:79;:::o;24748:20::-;;;;:::o;27852:83::-;27892:7;27919:8;;27912:15;;27852:83;:::o;27475:87::-;27514:13;27547:7;27540:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27475:87;:::o;41203:1058::-;41253:7;26561:1;26553:5;;:9;:36;;;;;26584:5;;26566:15;:23;26553:36;26545:45;;;;;;41313:1:::1;41277:18;:32;41296:12;:10;:12::i;:::-;41277:32;;;;;;;;;;;;;;;;:37;41273:78;;;41338:1;41331:8;;;;41273:78;41405:1;41365:6;:20;41372:12;:10;:12::i;:::-;41365:20;;;;;;;;;;;;;;;:36;;;:41;41361:82;;;41430:1;41423:8;;;;41361:82;41455:37;41495:6;:20;41502:12;:10;:12::i;:::-;41495:20;;;;;;;;;;;;;;;41455:60;;41528:14;41545:28;41560:12;:10;:12::i;:::-;41545:14;:28::i;:::-;41528:45;;41606:6;41588:15;:24;41584:65;;;41636:1;41629:8;;;;;;41584:65;41661:21;41703:6;41685:15;:24;41661:48;;41720:13;41736:1;41720:17;;41772:6;41752:4;:17;;;:26;41748:134;;;41829:4;:17;;;41811:15;:35;41795:51;;41869:1;41861:9;;41748:134;41908:24;24851:10;41908:13;:17;;:24;;;;:::i;:::-;41892:40;;41964:1;41947:13;:18;41943:59;;41989:1;41982:8;;;;;;;;41943:59;42012:17;42032:25;24851:10;42032:4;:14;;;:18;;:25;;;;:::i;:::-;42012:45;;42068:23;42213:5;42191:1;42179:9;:13;42178:40;42107:51;42144:13;42107:32;42129:9;42107:4;:17;;;:21;;:32;;;;:::i;:::-;:36;;:51;;;;:::i;:::-;:111;42068:150;;42238:15;42231:22;;;;;;;;26601:1;41203:1058:::0;:::o;44154:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30363:210::-;30494:4;22027:1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1;22765:7;:18;;;;26813:13:::1;;;;;;;;;;;26797:29;;:12;:10;:12::i;:::-;:29;;;:55;;;;26846:6;;;;;;;;;;;26830:22;;:12;:10;:12::i;:::-;:22;;;26797:55;26775:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30516:27:::2;30522:12;:10;:12::i;:::-;30536:6;30516:5;:27::i;:::-;30561:4;30554:11;;21983:1:::0;22944:7;:22;;;;30363:210;;;:::o;29933:422::-;30075:4;22027:1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1;22765:7;:18;;;;30097:228:::1;30120:12;:10;:12::i;:::-;30147:7;30169:145;30226:15;30169:145;;;;;;;;;;;;;;;;;:11;:25;30181:12;:10;:12::i;:::-;30169:25;;;;;;;;;;;;;;;:34;30195:7;30169:34;;;;;;;;;;;;;;;;:38;;:145;;;;;:::i;:::-;30097:8;:228::i;:::-;30343:4;30336:11;;21983:1:::0;22944:7;:22;;;;29933:422;;;;:::o;28417:238::-;28561:4;22027:1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1;22765:7;:18;;;;28583:42:::1;28593:12;:10;:12::i;:::-;28607:9;28618:6;28583:9;:42::i;:::-;28643:4;28636:11;;21983:1:::0;22944:7;:22;;;;28417:238;;;;:::o;38232:237::-;38297:7;38317:20;38340:14;:23;38355:7;38340:23;;;;;;;;;;;;;;;;38317:46;;38409:1;38394:12;:16;:67;;38460:1;38394:67;;;38413:11;:20;38425:7;38413:20;;;;;;;;;;;;;;;:38;38449:1;38434:12;:16;38413:38;;;;;;;;;;;:44;;;38394:67;38374:87;;;38232:237;;;:::o;34992:120::-;35050:7;35077:18;:27;35096:7;35077:27;;;;;;;;;;;;;;;;35070:34;;34992:120;;;:::o;35547:197::-;35684:4;26813:13;;;;;;;;;;;26797:29;;:12;:10;:12::i;:::-;:29;;;:55;;;;26846:6;;;;;;;;;;;26830:22;;:12;:10;:12::i;:::-;:22;;;26797:55;26775:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1:::1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22027:1;22765:7;:18;;;;35713:23:::2;35724:3;35729:6;35713:10;:23::i;:::-;35706:30;;21983:1:::1;22944:7;:22;;;;35547:197:::0;;;;:::o;27283:93::-;27328:7;27355:13;;;;;;;;;;;27348:20;;27283:93;:::o;27943:293::-;26673:6;;;;;;;;;;;26657:22;;:12;:10;:12::i;:::-;:22;;;26649:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1:::1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22027:1;22765:7;:18;;;;28029:4:::2;;28024:1;:9;;28016:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28111:12;;28106:1;:17;;28084:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28227:1;28216:8;:12;;;;21983:1:::1;22944:7;:22;;;;27943:293:::0;:::o;28663:217::-;28805:7;28837:11;:26;28849:13;28837:26;;;;;;;;;;;;;;;:35;28864:7;28837:35;;;;;;;;;;;;;;;;28830:42;;28663:217;;;;:::o;40544:651::-;26813:13;;;;;;;;;;;26797:29;;:12;:10;:12::i;:::-;:29;;;:55;;;;26846:6;;;;;;;;;;;26830:22;;:12;:10;:12::i;:::-;:22;;;26797:55;26775:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1:::1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22027:1;22765:7;:18;;;;40775:1:::2;40740:6;:15;40747:7;40740:15;;;;;;;;;;;;;;;:31;;;:36;40732:45;;;::::0;::::2;;40790:35;40828:6;:15;40835:7;40828:15;;;;;;;;;;;;;;;40790:53;;40874:6;40856:2;:15;;:24;;;;40906:8;40891:2;:12;;:23;;;;40942:11;40925:2;:14;;:28;;;;40987:15;40964:2;:20;;:38;;;;41034:6;41013:2;:18;;:27;;;;41069:15;41051:2;:15;;:33;;;;41097:28;41111:4;41118:6;41097:5;:28::i;:::-;41136:51;41164:4;41171:7;41180:6;41136:19;:51::i;:::-;22796:1;21983::::1;22944:7;:22;;;;40544:651:::0;;;;:::o;35752:116::-;26673:6;;;;;;;;;;;26657:22;;:12;:10;:12::i;:::-;:22;;;26649:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1:::1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22027:1;22765:7;:18;;;;35853:7:::2;35837:13;;:23;;;;;;;;;;;;;;;;;;21983:1:::1;22944:7;:22;;;;35752:116:::0;:::o;26942:147::-;26673:6;;;;;;;;;;;26657:22;;:12;:10;:12::i;:::-;:22;;;26649:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22027:1:::1;22632:7;;:19;;22624:63;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;22027:1;22765:7;:18;;;;27072:9:::2;27063:6;;:18;;;;;;;;;;;;;;;;;;21983:1:::1;22944:7;:22;;;;26942:147:::0;:::o;15512:106::-;15565:15;15600:10;15593:17;;15512:106;:::o;32788:449::-;32971:1;32946:27;;:13;:27;;;;32924:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33075:1;33056:21;;:7;:21;;;;33048:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33167:6;33129:11;:26;33141:13;33129:26;;;;;;;;;;;;;;;:35;33156:7;33129:35;;;;;;;;;;;;;;;:44;;;;33213:7;33189:40;;33198:13;33189:40;;;33222:6;33189:40;;;;;;;;;;;;;;;;;;32788:449;;;:::o;31140:669::-;31298:1;31280:20;;:6;:20;;;;31272:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31382:1;31361:23;;:9;:23;;;;31353:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31437:47;31458:6;31466:9;31477:6;31437:20;:47::i;:::-;31517:108;31553:6;31517:108;;;;;;;;;;;;;;;;;:9;:17;31527:6;31517:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;31497:9;:17;31507:6;31497:17;;;;;;;;;;;;;;;:128;;;;31659:32;31684:6;31659:9;:20;31669:9;31659:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;31636:9;:20;31646:9;31636:20;;;;;;;;;;;;;;;:55;;;;31724:9;31707:35;;31716:6;31707:35;;;31735:6;31707:35;;;;;;;;;;;;;;;;;;31755:46;31775:6;31783:9;31794:6;31755:19;:46::i;:::-;31140:669;;;:::o;1859:226::-;1979:7;2012:1;2007;:6;;2015:12;1999:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2039:9;2055:1;2051;:5;2039:17;;2076:1;2069:8;;;1859:226;;;;;:::o;956:181::-;1014:7;1034:9;1050:1;1046;:5;1034:17;;1075:1;1070;:6;;1062:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1128:1;1121:8;;;956:181;;;;:::o;32264:516::-;32367:1;32348:21;;:7;:21;;;;32340:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32420:49;32441:7;32458:1;32462:6;32420:20;:49::i;:::-;32503:105;32540:6;32503:105;;;;;;;;;;;;;;;;;:9;:18;32513:7;32503:18;;;;;;;;;;;;;;;;:22;;:105;;;;;:::i;:::-;32482:9;:18;32492:7;32482:18;;;;;;;;;;;;;;;:126;;;;32634:24;32651:6;32634:12;;:16;;:24;;;;:::i;:::-;32619:12;:39;;;;32700:1;32674:37;;32683:7;32674:37;;;32704:6;32674:37;;;;;;;;;;;;;;;;;;32724:48;32744:7;32761:1;32765:6;32724:19;:48::i;:::-;32264:516;;:::o;45002:443::-;45062:7;45082:37;45122:6;:11;45129:3;45122:11;;;;;;;;;;;;;;;45082:51;;45144:14;45202:5;;45177:4;:22;;;:30;45173:141;;;45233:4;:22;;;45224:31;;45173:141;;;45297:5;;45288:14;;45173:141;45347:1;45328:4;:16;;;:20;45324:90;;;45374:28;45385:4;:16;;;45374:6;:10;;:28;;;;:::i;:::-;45365:37;;45324:90;45431:6;45424:13;;;;45002:443;;;:::o;3291:132::-;3349:7;3376:39;3380:1;3383;3376:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3369:46;;3291:132;;;;:::o;2344:471::-;2402:7;2652:1;2647;:6;2643:47;;;2677:1;2670:8;;;;2643:47;2702:9;2718:1;2714;:5;2702:17;;2747:1;2742;2738;:5;;;;;;:10;2730:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2806:1;2799:8;;;2344:471;;;;;:::o;1420:136::-;1478:7;1505:43;1509:1;1512;1505:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1498:50;;1420:136;;;;:::o;34516:468::-;34583:4;34649:6;34622:18;:23;34641:3;34622:23;;;;;;;;;;;;;;;;:33;;34600:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34815:35;34843:6;34815:18;:23;34834:3;34815:23;;;;;;;;;;;;;;;;:27;;:35;;;;:::i;:::-;34789:18;:23;34808:3;34789:23;;;;;;;;;;;;;;;:61;;;;34878:26;34897:6;34878:9;:14;34888:3;34878:14;;;;;;;;;;;;;;;;:18;;:26;;;;:::i;:::-;34861:9;:14;34871:3;34861:14;;;;;;;;;;;;;;;:43;;;;34922:30;34940:3;34945:6;34922:30;;;;;;;;;;;;;;;;;;;;;;;;;;34972:4;34965:11;;34516:468;;;;:::o;40159:377::-;40236:23;40262:9;:20;40272:9;40262:20;;;;;;;;;;;;;;;;;;;;;;;;;40236:46;;40293:24;40320:9;:20;40330:9;40320:20;;;;;;;;;;;;;;;;40293:47;;40374:9;40351;:20;40361:9;40351:20;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;40445:9;40401:54;;40428:15;40401:54;;40417:9;40401:54;;;;;;;;;;;;40468:60;40483:15;40500:9;40511:16;40468:14;:60::i;:::-;40159:377;;;;:::o;33987:521::-;34052:4;34169:6;34151:9;:14;34161:3;34151:14;;;;;;;;;;;;;;;;:24;;34129:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34332:26;34351:6;34332:9;:14;34342:3;34332:14;;;;;;;;;;;;;;;;:18;;:26;;;;:::i;:::-;34315:9;:14;34325:3;34315:14;;;;;;;;;;;;;;;:43;;;;34395:35;34423:6;34395:18;:23;34414:3;34395:23;;;;;;;;;;;;;;;;:27;;:35;;;;:::i;:::-;34369:18;:23;34388:3;34369:23;;;;;;;;;;;;;;;:61;;;;34448:28;34464:3;34469:6;34448:28;;;;;;;;;;;;;;;;;;;;;;;;;;34496:4;34489:11;;33987:521;;;;:::o;31817:439::-;31920:1;31901:21;;:7;:21;;;;31893:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31971:49;32000:1;32004:7;32013:6;31971:20;:49::i;:::-;32048:24;32065:6;32048:12;;:16;;:24;;;;:::i;:::-;32033:12;:39;;;;32104:30;32127:6;32104:9;:18;32114:7;32104:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;32083:9;:18;32093:7;32083:18;;;;;;;;;;;;;;;:51;;;;32171:7;32150:37;;32167:1;32150:37;;;32180:6;32150:37;;;;;;;;;;;;;;;;;;32200:48;32228:1;32232:7;32241:6;32200:19;:48::i;:::-;31817:439;;:::o;44221:773::-;44389:1;44371:20;;:6;:20;;;;44363:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44473:1;44452:23;;:9;:23;;;;44444:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44528:47;44549:6;44557:9;44568:6;44528:20;:47::i;:::-;44608:108;44644:6;44608:108;;;;;;;;;;;;;;;;;:9;:17;44618:6;44608:17;;;;;;;;;;;;;;;;:21;;:108;;;;;:::i;:::-;44588:9;:17;44598:6;44588:17;;;;;;;;;;;;;;;:128;;;;44759:65;44807:6;44759:18;:29;44778:9;44759:29;;;;;;;;;;;;;;;;:33;;:65;;;;:::i;:::-;44727:18;:29;44746:9;44727:29;;;;;;;;;;;;;;;:97;;;;44859:9;44842:35;;44851:6;44842:35;;;44870:6;44842:35;;;;;;;;;;;;;;;;;;44893:34;44909:9;44920:6;44893:34;;;;;;;;;;;;;;;;;;;;;;;;;;44940:46;44960:6;44968:9;44979:6;44940:19;:46::i;:::-;44221:773;;;:::o;33343:417::-;33497:1;33481:18;;:4;:18;;;33477:276;;;33552:17;33572:25;33590:6;33572:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;33552:45;;33651:8;;33638:9;:21;;:42;;;;;33676:4;;33663:9;:17;;33638:42;33612:129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33477:276;;33343:417;;;:::o;33768:173::-;33901:32;33916:4;33922:2;33926:6;33901:14;:32::i;:::-;33768:173;;;:::o;3919:312::-;4039:7;4071:1;4067;:5;4074:12;4059:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4098:9;4114:1;4110;:5;;;;;;4098:17;;4222:1;4215:8;;;3919:312;;;;;:::o;35876:1029::-;36016:6;36006:16;;:6;:16;;;;:30;;;;;36035:1;36026:6;:10;36006:30;36002:896;;;36075:1;36057:20;;:6;:20;;;36053:409;;36098:17;36118:14;:22;36133:6;36118:22;;;;;;;;;;;;;;;;36098:42;;36159:17;36212:1;36200:9;:13;:110;;36309:1;36200:110;;;36241:11;:19;36253:6;36241:19;;;;;;;;;;;;;;;:34;36273:1;36261:9;:13;36241:34;;;;;;;;;;;:40;;;36200:110;36159:151;;36329:17;36349:21;36363:6;36349:9;:13;;:21;;;;:::i;:::-;36329:41;;36389:57;36406:6;36414:9;36425;36436;36389:16;:57::i;:::-;36053:409;;;;36500:1;36482:20;;:6;:20;;;36478:409;;36523:17;36543:14;:22;36558:6;36543:22;;;;;;;;;;;;;;;;36523:42;;36584:17;36637:1;36625:9;:13;:110;;36734:1;36625:110;;;36666:11;:19;36678:6;36666:19;;;;;;;;;;;;;;;:34;36698:1;36686:9;:13;36666:34;;;;;;;;;;;:40;;;36625:110;36584:151;;36754:17;36774:21;36788:6;36774:9;:13;;:21;;;;:::i;:::-;36754:41;;36814:57;36831:6;36839:9;36850;36861;36814:16;:57::i;:::-;36478:409;;;;36002:896;35876:1029;;;:::o;36913:669::-;37112:1;37097:12;:16;:99;;;;;37184:12;37130:11;:22;37142:9;37130:22;;;;;;;;;;;;;;;:40;37168:1;37153:12;:16;37130:40;;;;;;;;;;;:50;;;:66;37097:99;37079:427;;;37272:8;37223:11;:22;37235:9;37223:22;;;;;;;;;;;;;;;:40;37261:1;37246:12;:16;37223:40;;;;;;;;;;;:46;;:57;;;;37079:427;;;37352:83;;;;;;;;37381:12;37352:83;;;;37412:8;37352:83;;;37313:11;:22;37325:9;37313:22;;;;;;;;;;;;;;;:36;37336:12;37313:36;;;;;;;;;;;:122;;;;;;;;;;;;;;;;;;;37493:1;37478:12;:16;37450:14;:25;37465:9;37450:25;;;;;;;;;;;;;;;:44;;;;37079:427;37544:9;37523:51;;;37555:8;37565;37523:51;;;;;;;;;;;;;;;;;;;;;;;;36913:669;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://2da2e7107a8638b7fd94c004de5b65ec7f0f027da61b5517508766a984604b5c
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.