ERC-20
Overview
Max Total Supply
6,264.962668041194386716 xKNCa
Holders
18
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.21569491607937279 xKNCaValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xB088b2C7...FE312Ce75 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
xKNC
Compiler Version
v0.5.15+commit.6a57276f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-07-10 */ // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.5.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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view 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/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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/math/SafeMath.sol pragma solidity ^0.5.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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.5.5; /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @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]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.5.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 ERC20;` 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)); } 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. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "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/token/ERC20/ERC20Detailed.sol pragma solidity ^0.5.0; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } } // File: @openzeppelin/contracts/access/Roles.sol pragma solidity ^0.5.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } // File: @openzeppelin/contracts/access/roles/PauserRole.sol pragma solidity ^0.5.0; contract PauserRole is Context { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(_msgSender()); } modifier onlyPauser() { require(isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role"); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(_msgSender()); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } // File: @openzeppelin/contracts/lifecycle/Pausable.sol pragma solidity ^0.5.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is Context, PauserRole { /** * @dev Emitted when the pause is triggered by a pauser (`account`). */ event Paused(address account); /** * @dev Emitted when the pause is lifted by a pauser (`account`). */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. Assigns the Pauser role * to the deployer. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/utils/ReentrancyGuard.sol pragma solidity ^0.5.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]. * * _Since v2.5.0:_ this module is now much more gas efficient, given net gas * metering changes introduced in the Istanbul hardfork. */ contract ReentrancyGuard { bool private _notEntered; constructor () internal { // Storing an initial 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 percetange 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. _notEntered = true; } /** * @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(_notEntered, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _notEntered = false; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _notEntered = true; } } // File: @openzeppelin/contracts/ownership/Ownable.sol pragma solidity ^0.5.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/util/Whitelist.sol pragma solidity 0.5.15; contract Whitelist is Ownable { mapping(address => bool) whitelist; event AddedToWhitelist(address indexed account); event RemovedFromWhitelist(address indexed account); function addToWhitelist(address _address) public onlyOwner { whitelist[_address] = true; emit AddedToWhitelist(_address); } function removefromWhitelist(address _address) public onlyOwner { whitelist[_address] = false; emit RemovedFromWhitelist(_address); } function isWhitelisted(address _address) public view returns (bool) { return whitelist[_address]; } } // File: contracts/interface/IKyberNetworkProxy.sol pragma solidity 0.5.15; contract IKyberNetworkProxy { function getExpectedRate(ERC20 src, ERC20 dest, uint srcQty) external view returns (uint expectedRate, uint slippageRate); function swapEtherToToken(ERC20 token, uint minConversionRate) external payable returns(uint); function swapTokenToEther(ERC20 token, uint tokenQty, uint minRate) external payable returns(uint); function swapTokenToToken(ERC20 src, uint srcAmount, ERC20 dest, uint minRate) external returns(uint); } // File: contracts/interface/IKyberStaking.sol pragma solidity 0.5.15; contract IKyberStaking { function deposit(uint256 amount) external; function withdraw(uint256 amount) external; function getLatestStakeBalance(address staker) external view returns(uint); } // File: contracts/interface/IKyberDAO.sol pragma solidity 0.5.15; contract IKyberDAO { function vote(uint256 campaignID, uint256 option) external; } // File: contracts/interface/IKyberFeeHandler.sol pragma solidity 0.5.15; contract IKyberFeeHandler { function claimStakerReward( address staker, uint256 epoch ) external returns(uint256 amountWei); } // File: contracts/xKNC.sol pragma solidity 0.5.15; /* * xKNC KyberDAO Pool Token * Communal Staking Pool with Stated Governance Position */ contract xKNC is ERC20, ERC20Detailed, Whitelist, Pausable, ReentrancyGuard { using SafeMath for uint256; using SafeERC20 for ERC20; address private constant ETH_ADDRESS = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; ERC20 public knc; IKyberDAO public kyberDao; IKyberStaking public kyberStaking; IKyberNetworkProxy public kyberProxy; IKyberFeeHandler[] public kyberFeeHandlers; address[] private kyberFeeTokens; uint256 constant PERCENT = 100; uint256 constant MAX_UINT = 2**256 - 1; uint256 constant INITIAL_SUPPLY_MULTIPLIER = 10; uint256[] public feeDivisors; uint256 private withdrawableEthFees; uint256 private withdrawableKncFees; string public mandate; mapping(address => bool) fallbackAllowedAddress; struct FeeStructure { uint mintFee; uint burnFee; uint claimFee; } FeeStructure public feeStructure; event MintWithEth( address indexed user, uint256 ethPayable, uint256 mintAmount, uint256 timestamp ); event MintWithKnc( address indexed user, uint256 kncPayable, uint256 mintAmount, uint256 timestamp ); event Burn( address indexed user, bool redeemedForKnc, uint256 burnAmount, uint256 timestamp ); event FeeWithdraw(uint256 ethAmount, uint256 kncAmount, uint256 timestamp); event FeeDivisorsSet(uint256 mintFee, uint256 burnFee, uint256 claimFee); event EthRewardClaimed(uint256 amount, uint256 timestamp); event TokenRewardClaimed(uint256 amount, uint256 timestamp); enum FeeTypes {MINT, BURN, CLAIM} constructor( string memory _mandate, address _kyberStakingAddress, address _kyberProxyAddress, address _kyberTokenAddress, address _kyberDaoAddress ) public ERC20Detailed("xKNC", "xKNCa", 18) { mandate = _mandate; kyberStaking = IKyberStaking(_kyberStakingAddress); kyberProxy = IKyberNetworkProxy(_kyberProxyAddress); knc = ERC20(_kyberTokenAddress); kyberDao = IKyberDAO(_kyberDaoAddress); _addFallbackAllowedAddress(_kyberProxyAddress); } /* * @notice Called by users buying with ETH * @dev Swaps ETH for KNC, deposits to Staking contract * @dev: Mints pro rata xKNC tokens * @param: kyberProxy.getExpectedRate(eth => knc) */ function mint(uint256 minRate) external payable whenNotPaused { require(msg.value > 0, "Must send eth with tx"); // ethBalBefore checked in case of eth still waiting for exch to KNC uint256 ethBalBefore = getFundEthBalanceWei().sub(msg.value); uint256 fee = _administerEthFee(FeeTypes.MINT, ethBalBefore); uint256 ethValueForKnc = msg.value.sub(fee); uint256 kncBalanceBefore = getFundKncBalanceTwei(); _swapEtherToKnc(ethValueForKnc, minRate); _deposit(getAvailableKncBalanceTwei()); uint256 mintAmount = _calculateMintAmount(kncBalanceBefore); emit MintWithEth(msg.sender, msg.value, mintAmount, block.timestamp); return super._mint(msg.sender, mintAmount); } /* * @notice Called by users buying with KNC * @notice Users must submit ERC20 approval before calling * @dev Deposits to Staking contract * @dev: Mints pro rata xKNC tokens * @param: Number of KNC to contribue */ function mintWithKnc(uint256 kncAmountTwei) external whenNotPaused { require(kncAmountTwei > 0, "Must contribute KNC"); knc.safeTransferFrom(msg.sender, address(this), kncAmountTwei); uint256 kncBalanceBefore = getFundKncBalanceTwei(); _administerKncFee(kncAmountTwei, FeeTypes.MINT); _deposit(getAvailableKncBalanceTwei()); uint256 mintAmount = _calculateMintAmount(kncBalanceBefore); emit MintWithKnc(msg.sender, kncAmountTwei, mintAmount, block.timestamp); return super._mint(msg.sender, mintAmount); } /* * @notice Called by users burning their xKNC * @dev Calculates pro rata KNC and redeems from Staking contract * @dev: Exchanges for ETH if necessary and pays out to caller * @param tokensToRedeem * @param redeemForKnc bool: if true, redeem for KNC; otherwise ETH * @param kyberProxy.getExpectedRate(knc => eth) */ function burn( uint256 tokensToRedeemTwei, bool redeemForKnc, uint256 minRate ) external nonReentrant { require( balanceOf(msg.sender) >= tokensToRedeemTwei, "Insufficient balance" ); uint256 proRataKnc = getFundKncBalanceTwei().mul(tokensToRedeemTwei).div( totalSupply() ); _withdraw(proRataKnc); super._burn(msg.sender, tokensToRedeemTwei); if (redeemForKnc) { uint256 fee = _administerKncFee(proRataKnc, FeeTypes.BURN); knc.safeTransfer(msg.sender, proRataKnc.sub(fee)); } else { // safeguard to not overcompensate _burn sender in case eth still awaiting for exch to KNC uint256 ethBalBefore = getFundEthBalanceWei(); kyberProxy.swapTokenToEther( knc, getAvailableKncBalanceTwei(), minRate ); _administerEthFee(FeeTypes.BURN, ethBalBefore); uint256 valToSend = getFundEthBalanceWei().sub(ethBalBefore); (bool success, ) = msg.sender.call.value(valToSend)(""); require(success, "Burn transfer failed"); } emit Burn(msg.sender, redeemForKnc, tokensToRedeemTwei, block.timestamp); } /* * @notice Calculates proportional issuance according to KNC contribution * @notice Fund starts at ratio of INITIAL_SUPPLY_MULTIPLIER/1 == xKNC supply/KNC balance * and approaches 1/1 as rewards accrue in KNC * @param kncBalanceBefore used to determine ratio of incremental to current KNC */ function _calculateMintAmount(uint256 kncBalanceBefore) private view returns (uint256 mintAmount) { uint256 kncBalanceAfter = getFundKncBalanceTwei(); if (totalSupply() == 0) return kncBalanceAfter.mul(INITIAL_SUPPLY_MULTIPLIER); mintAmount = (kncBalanceAfter.sub(kncBalanceBefore)) .mul(totalSupply()) .div(kncBalanceBefore); } /* * @notice KyberDAO deposit */ function _deposit(uint256 amount) private { kyberStaking.deposit(amount); } /* * @notice KyberDAO withdraw */ function _withdraw(uint256 amount) private { kyberStaking.withdraw(amount); } /* * @notice Vote on KyberDAO campaigns * @dev Admin calls with relevant params for each campaign in an epoch * @param DAO campaign ID * @param Choice of voting option */ function vote(uint256 campaignID, uint256 option) external onlyOwner { kyberDao.vote(campaignID, option); } /* * @notice Claim reward from previous epoch * @notice All fee handlers should be called at once * @dev Admin calls with relevant params * @dev ETH/other asset rewards swapped into KNC * @param epoch - KyberDAO epoch * @param feeHandlerIndices - indices of feeHandler contract to claim from * @param maxAmountsToSell - sellAmount above which slippage would be too high * and rewards would redirected into KNC in multiple trades * @param minRates - kyberProxy.getExpectedRate(eth/token => knc) */ function claimReward( uint256 epoch, uint256[] calldata feeHandlerIndices, uint256[] calldata maxAmountsToSell, uint256[] calldata minRates ) external onlyOwner { require( feeHandlerIndices.length == maxAmountsToSell.length, "Arrays must be equal length" ); require( maxAmountsToSell.length == minRates.length, "Arrays must be equal length" ); uint256 ethBalBefore = getFundEthBalanceWei(); for (uint256 i = 0; i < feeHandlerIndices.length; i++) { kyberFeeHandlers[i].claimStakerReward(address(this), epoch); if (kyberFeeTokens[i] == ETH_ADDRESS) { emit EthRewardClaimed( getFundEthBalanceWei().sub(ethBalBefore), block.timestamp ); _administerEthFee(FeeTypes.CLAIM, ethBalBefore); } else { uint256 tokenBal = IERC20(kyberFeeTokens[i]).balanceOf( address(this) ); emit TokenRewardClaimed(tokenBal, block.timestamp); } _unwindRewards( feeHandlerIndices[i], maxAmountsToSell[i], minRates[i] ); } _deposit(getAvailableKncBalanceTwei()); } /* * @notice Called when rewards size is too big for the one trade executed by `claimReward` * @param feeHandlerIndices - index of feeHandler previously claimed from * @param maxAmountsToSell - sellAmount above which slippage would be too high * and rewards would redirected into KNC in multiple trades * @param minRates - kyberProxy.getExpectedRate(eth/token => knc) */ function unwindRewards( uint256[] calldata feeHandlerIndices, uint256[] calldata maxAmountsToSell, uint256[] calldata minRates ) external onlyOwner { for (uint256 i = 0; i < feeHandlerIndices.length; i++) { _unwindRewards( feeHandlerIndices[i], maxAmountsToSell[i], minRates[i] ); } _deposit(getAvailableKncBalanceTwei()); } /* * @notice Exchanges reward tokens (ETH, etc) for KNC */ function _unwindRewards( uint256 feeHandlerIndex, uint256 maxAmountToSell, uint256 minRate ) private { address rewardTokenAddress = kyberFeeTokens[feeHandlerIndex]; uint256 amountToSell; if (rewardTokenAddress == ETH_ADDRESS) { uint256 ethBal = getFundEthBalanceWei(); if (maxAmountToSell < ethBal) { amountToSell = maxAmountToSell; } else { amountToSell = ethBal; } _swapEtherToKnc(amountToSell, minRate); } else { uint256 tokenBal = IERC20(rewardTokenAddress).balanceOf( address(this) ); if (maxAmountToSell < tokenBal) { amountToSell = maxAmountToSell; } else { amountToSell = tokenBal; } uint256 kncBalanceBefore = getAvailableKncBalanceTwei(); _swapTokenToKnc( rewardTokenAddress, amountToSell, minRate ); uint256 kncBalanceAfter = getAvailableKncBalanceTwei(); _administerKncFee( kncBalanceAfter.sub(kncBalanceBefore), FeeTypes.CLAIM ); } } function _swapEtherToKnc( uint256 amount, uint256 minRate ) private { kyberProxy.swapEtherToToken.value(amount)(knc, minRate); } function _swapTokenToKnc( address fromAddress, uint256 amount, uint256 minRate ) private { kyberProxy.swapTokenToToken( ERC20(fromAddress), amount, knc, minRate ); } /* * @notice Returns ETH balance belonging to the fund */ function getFundEthBalanceWei() public view returns (uint256) { return address(this).balance.sub(withdrawableEthFees); } /* * @notice Returns KNC balance staked to DAO */ function getFundKncBalanceTwei() public view returns (uint256) { return kyberStaking.getLatestStakeBalance(address(this)); } /* * @notice Returns KNC balance available to stake */ function getAvailableKncBalanceTwei() public view returns (uint256) { return knc.balanceOf(address(this)).sub(withdrawableKncFees); } function _administerEthFee(FeeTypes _type, uint256 ethBalBefore) private returns (uint256 fee) { if (!isWhitelisted(msg.sender)) { uint256 feeRate = getFeeRate(_type); if (feeRate == 0) return 0; fee = (getFundEthBalanceWei().sub(ethBalBefore)).div(feeRate); withdrawableEthFees = withdrawableEthFees.add(fee); } } function _administerKncFee(uint256 _kncAmount, FeeTypes _type) private returns (uint256 fee) { if (!isWhitelisted(msg.sender)) { uint256 feeRate = getFeeRate(_type); if (feeRate == 0) return 0; fee = _kncAmount.div(feeRate); withdrawableKncFees = withdrawableKncFees.add(fee); } } function getFeeRate(FeeTypes _type) public view returns (uint256) { if (_type == FeeTypes.MINT) return feeStructure.mintFee; if (_type == FeeTypes.BURN) return feeStructure.burnFee; if (_type == FeeTypes.CLAIM) return feeStructure.claimFee; } /* * @notice Called on initial deployment and on the addition of new fee handlers * @param Address of KyberFeeHandler contract * @param Address of underlying rewards token */ function addKyberFeeHandler( address _kyberfeeHandlerAddress, address _tokenAddress ) external onlyOwner { kyberFeeHandlers.push(IKyberFeeHandler(_kyberfeeHandlerAddress)); kyberFeeTokens.push(_tokenAddress); if (_tokenAddress != ETH_ADDRESS) { _approveKyberProxyContract(_tokenAddress, false); } else { _addFallbackAllowedAddress(_kyberfeeHandlerAddress); } } /* UTILS */ /* * @notice Called by admin on deployment * @dev Approves Kyber Staking contract to deposit KNC * @param Pass _reset as true if resetting allowance to zero */ function approveStakingContract(bool _reset) external onlyOwner { uint256 amount = _reset ? 0 : MAX_UINT; knc.approve(address(kyberStaking), amount); } /* * @notice Called by admin on deployment for KNC * @dev Approves Kyber Proxy contract to trade KNC * @param Token to approve on proxy contract * @param Pass _reset as true if resetting allowance to zero */ function approveKyberProxyContract(address _token, bool _reset) external onlyOwner { _approveKyberProxyContract(_token, _reset); } function _approveKyberProxyContract(address _token, bool _reset) private { uint256 amount = _reset ? 0 : MAX_UINT; IERC20(_token).approve(address(kyberProxy), amount); } /* * @notice Called by admin on deployment * @dev (1 / feeDivisor) = % fee on mint, burn, ETH claims * @dev ex: A feeDivisor of 334 suggests a fee of 0.3% * @param feeDivisors[mint, burn, claim]: */ function setFeeDivisors(uint256 _mintFee, uint256 _burnFee, uint256 _claimFee) external onlyOwner { require( _mintFee >= 100 || _mintFee == 0, "Mint fee must be zero or equal to or less than 1%" ); require( _burnFee >= 100, "Burn fee must be equal to or less than 1%" ); require(_claimFee >= 10, "Claim fee must be less than 10%"); feeStructure.mintFee = _mintFee; feeStructure.burnFee = _burnFee; feeStructure.claimFee = _claimFee; emit FeeDivisorsSet(_mintFee, _burnFee, _claimFee); } function withdrawFees() external onlyOwner { uint256 ethFees = withdrawableEthFees; uint256 kncFees = withdrawableKncFees; withdrawableEthFees = 0; withdrawableKncFees = 0; (bool success, ) = msg.sender.call.value(ethFees)(""); require(success, "Burn transfer failed"); knc.safeTransfer(owner(), kncFees); emit FeeWithdraw(ethFees, kncFees, block.timestamp); } function addFallbackAllowedAddress(address _address) external onlyOwner { _addFallbackAllowedAddress(_address); } function _addFallbackAllowedAddress(address _address) private { fallbackAllowedAddress[_address] = true; } /* * @notice Fallback to accommodate claimRewards function */ function() external payable { require( fallbackAllowedAddress[msg.sender], "Only approved address can use fallback" ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_mandate","type":"string"},{"internalType":"address","name":"_kyberStakingAddress","type":"address"},{"internalType":"address","name":"_kyberProxyAddress","type":"address"},{"internalType":"address","name":"_kyberTokenAddress","type":"address"},{"internalType":"address","name":"_kyberDaoAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AddedToWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"bool","name":"redeemedForKnc","type":"bool"},{"indexed":false,"internalType":"uint256","name":"burnAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"EthRewardClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"mintFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"burnFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claimFee","type":"uint256"}],"name":"FeeDivisorsSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"kncAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"FeeWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"ethPayable","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"MintWithEth","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"kncPayable","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"MintWithKnc","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RemovedFromWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TokenRewardClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addFallbackAllowedAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_kyberfeeHandlerAddress","type":"address"},{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"addKyberFeeHandler","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"bool","name":"_reset","type":"bool"}],"name":"approveKyberProxyContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"_reset","type":"bool"}],"name":"approveStakingContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokensToRedeemTwei","type":"uint256"},{"internalType":"bool","name":"redeemForKnc","type":"bool"},{"internalType":"uint256","name":"minRate","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256[]","name":"feeHandlerIndices","type":"uint256[]"},{"internalType":"uint256[]","name":"maxAmountsToSell","type":"uint256[]"},{"internalType":"uint256[]","name":"minRates","type":"uint256[]"}],"name":"claimReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"feeDivisors","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feeStructure","outputs":[{"internalType":"uint256","name":"mintFee","type":"uint256"},{"internalType":"uint256","name":"burnFee","type":"uint256"},{"internalType":"uint256","name":"claimFee","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getAvailableKncBalanceTwei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"enum xKNC.FeeTypes","name":"_type","type":"uint8"}],"name":"getFeeRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getFundEthBalanceWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getFundKncBalanceTwei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"knc","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"kyberDao","outputs":[{"internalType":"contract IKyberDAO","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"kyberFeeHandlers","outputs":[{"internalType":"contract IKyberFeeHandler","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"kyberProxy","outputs":[{"internalType":"contract IKyberNetworkProxy","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"kyberStaking","outputs":[{"internalType":"contract IKyberStaking","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mandate","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"minRate","type":"uint256"}],"name":"mint","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"kncAmountTwei","type":"uint256"}],"name":"mintWithKnc","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removefromWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_mintFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_claimFee","type":"uint256"}],"name":"setFeeDivisors","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256[]","name":"feeHandlerIndices","type":"uint256[]"},{"internalType":"uint256[]","name":"maxAmountsToSell","type":"uint256[]"},{"internalType":"uint256[]","name":"minRates","type":"uint256[]"}],"name":"unwindRewards","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"campaignID","type":"uint256"},{"internalType":"uint256","name":"option","type":"uint256"}],"name":"vote","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdrawFees","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200642538038062006425833981810160405260a08110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805190602001909291908051906020019092919080519060200190929190805190602001909291905050506040518060400160405280600481526020017f784b4e43000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f784b4e436100000000000000000000000000000000000000000000000000000081525060128260039080519060200190620001a9929190620006a9565b508160049080519060200190620001c2929190620006a9565b5080600560006101000a81548160ff021916908360ff1602179055505050506000620001f36200042160201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002b2620002a66200042160201b60201c565b6200042960201b60201c565b6000600860006101000a81548160ff0219169083151502179055506001600860016101000a81548160ff021916908315150217905550846011908051906020019062000300929190620006a9565b5083600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600860026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000416836200048a60201b60201c565b505050505062000758565b600033905090565b62000444816007620004e560201b6200568a1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b620004f78282620005c960201b60201c565b156200056b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180620064036022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006ec57805160ff19168380011785556200071d565b828001600101855582156200071d579182015b828111156200071c578251825591602001919060010190620006ff565b5b5090506200072c919062000730565b5090565b6200075591905b808211156200075157600081600090555060010162000737565b5090565b90565b615c9b80620007686000396000f3fe6080604052600436106102935760003560e01c806382dc1ec41161015a578063b384abef116100c1578063e7654b3c1161007a578063e7654b3c14611222578063f0359d1b14611271578063f0eeed81146112c8578063f27a795a1461131f578063f2fde38b14611370578063f4d4042a146113c157610293565b8063b384abef14610f2f578063c4ede67d14610f74578063dd62ed3e146110a4578063df22db8814611129578063e43252d71461117a578063e61387e0146111cb57610293565b806395d89b411161011357806395d89b4114610c26578063a0712d6814610cb6578063a457c2d714610ce4578063a620daef14610d57578063a9059cbb14610e91578063ad4258bd14610f0457610293565b806382dc1ec414610ad25780638456cb5914610b235780638da5cb5b14610b3a5780638f32d59b14610b9157806391fe898514610bc05780639560267514610bfb57610293565b8063476343ee116101fe5780635c975abb116101b75780635c975abb1461096d5780636ef8d66d1461099c57806370a08231146109b3578063715018a614610a185780637c70fb5714610a2f578063828bdfb414610a8157610293565b8063476343ee146107bb5780634d8f5105146107d257806351be62fa14610829578063528d871114610886578063544e3a5b146108bf5780635793e155146108fc57610293565b8063313ce56711610250578063313ce5671461059e57806339509351146105cf57806339b1b96d146106425780633af32abf146106d25780633f4ba83a1461073b57806346fbf68e1461075257610293565b806306fdde0314610337578063095ea7b3146103c757806318160ddd1461043a57806320cbf72c14610465578063215834681461049057806323b872dd1461050b575b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610335576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615ac36026913960400191505060405180910390fd5b005b34801561034357600080fd5b5061034c611410565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038c578082015181840152602081019050610371565b50505050905090810190601f1680156103b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103d357600080fd5b50610420600480360360408110156103ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114b2565b604051808215151515815260200191505060405180910390f35b34801561044657600080fd5b5061044f6114d0565b6040518082815260200191505060405180910390f35b34801561047157600080fd5b5061047a6114da565b6040518082815260200191505060405180910390f35b34801561049c57600080fd5b506104c9600480360360208110156104b357600080fd5b81019080803590602001909291905050506115cf565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561051757600080fd5b506105846004803603606081101561052e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061160b565b604051808215151515815260200191505060405180910390f35b3480156105aa57600080fd5b506105b36116e4565b604051808260ff1660ff16815260200191505060405180910390f35b3480156105db57600080fd5b50610628600480360360408110156105f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116fb565b604051808215151515815260200191505060405180910390f35b34801561064e57600080fd5b506106576117ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561069757808201518184015260208101905061067c565b50505050905090810190601f1680156106c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156106de57600080fd5b50610721600480360360208110156106f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061184c565b604051808215151515815260200191505060405180910390f35b34801561074757600080fd5b506107506118a2565b005b34801561075e57600080fd5b506107a16004803603602081101561077557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a10565b604051808215151515815260200191505060405180910390f35b3480156107c757600080fd5b506107d0611a2d565b005b3480156107de57600080fd5b506107e7611c41565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561083557600080fd5b506108846004803603604081101561084c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611c67565b005b34801561089257600080fd5b5061089b611cef565b60405180848152602001838152602001828152602001935050505060405180910390f35b3480156108cb57600080fd5b506108fa600480360360208110156108e257600080fd5b81019080803515159060200190929190505050611d07565b005b34801561090857600080fd5b5061096b6004803603604081101561091f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ebe565b005b34801561097957600080fd5b50610982612069565b604051808215151515815260200191505060405180910390f35b3480156109a857600080fd5b506109b1612080565b005b3480156109bf57600080fd5b50610a02600480360360208110156109d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612092565b6040518082815260200191505060405180910390f35b348015610a2457600080fd5b50610a2d6120da565b005b348015610a3b57600080fd5b50610a6b60048036036020811015610a5257600080fd5b81019080803560ff169060200190929190505050612215565b6040518082815260200191505060405180910390f35b348015610a8d57600080fd5b50610ad060048036036020811015610aa457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061229f565b005b348015610ade57600080fd5b50610b2160048036036020811015610af557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612325565b005b348015610b2f57600080fd5b50610b38612396565b005b348015610b4657600080fd5b50610b4f612505565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b9d57600080fd5b50610ba661252f565b604051808215151515815260200191505060405180910390f35b348015610bcc57600080fd5b50610bf960048036036020811015610be357600080fd5b810190808035906020019092919050505061258e565b005b348015610c0757600080fd5b50610c10612778565b6040518082815260200191505060405180910390f35b348015610c3257600080fd5b50610c3b612794565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c7b578082015181840152602081019050610c60565b50505050905090810190601f168015610ca85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ce260048036036020811015610ccc57600080fd5b8101908080359060200190929190505050612836565b005b348015610cf057600080fd5b50610d3d60048036036040811015610d0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a16565b604051808215151515815260200191505060405180910390f35b348015610d6357600080fd5b50610e8f60048036036080811015610d7a57600080fd5b810190808035906020019092919080359060200190640100000000811115610da157600080fd5b820183602082011115610db357600080fd5b80359060200191846020830284011164010000000083111715610dd557600080fd5b909192939192939080359060200190640100000000811115610df657600080fd5b820183602082011115610e0857600080fd5b80359060200191846020830284011164010000000083111715610e2a57600080fd5b909192939192939080359060200190640100000000811115610e4b57600080fd5b820183602082011115610e5d57600080fd5b80359060200191846020830284011164010000000083111715610e7f57600080fd5b9091929391929390505050612ae3565b005b348015610e9d57600080fd5b50610eea60048036036040811015610eb457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612fef565b604051808215151515815260200191505060405180910390f35b348015610f1057600080fd5b50610f1961300d565b6040518082815260200191505060405180910390f35b348015610f3b57600080fd5b50610f7260048036036040811015610f5257600080fd5b8101908080359060200190929190803590602001909291905050506130ee565b005b348015610f8057600080fd5b506110a260048036036060811015610f9757600080fd5b8101908080359060200190640100000000811115610fb457600080fd5b820183602082011115610fc657600080fd5b80359060200191846020830284011164010000000083111715610fe857600080fd5b90919293919293908035906020019064010000000081111561100957600080fd5b82018360208201111561101b57600080fd5b8035906020019184602083028401116401000000008311171561103d57600080fd5b90919293919293908035906020019064010000000081111561105e57600080fd5b82018360208201111561107057600080fd5b8035906020019184602083028401116401000000008311171561109257600080fd5b9091929391929390505050613201565b005b3480156110b057600080fd5b50611113600480360360408110156110c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506132f3565b6040518082815260200191505060405180910390f35b34801561113557600080fd5b506111786004803603606081101561114c57600080fd5b81019080803590602001909291908035151590602001909291908035906020019092919050505061337a565b005b34801561118657600080fd5b506111c96004803603602081101561119d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613808565b005b3480156111d757600080fd5b506111e0613920565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561122e57600080fd5b5061126f6004803603606081101561124557600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050613946565b005b34801561127d57600080fd5b50611286613b60565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156112d457600080fd5b506112dd613b86565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561132b57600080fd5b5061136e6004803603602081101561134257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613bac565b005b34801561137c57600080fd5b506113bf6004803603602081101561139357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613cc4565b005b3480156113cd57600080fd5b506113fa600480360360208110156113e457600080fd5b8101908080359060200190929190505050613d4a565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114a85780601f1061147d576101008083540402835291602001916114a8565b820191906000526020600020905b81548152906001019060200180831161148b57829003601f168201915b5050505050905090565b60006114c66114bf613d6b565b8484613d73565b6001905092915050565b6000600254905090565b60006115ca601054600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561158157600080fd5b505afa158015611595573d6000803e3d6000fd5b505050506040513d60208110156115ab57600080fd5b8101908080519060200190929190505050613f6a90919063ffffffff16565b905090565b600c81815481106115dc57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611618848484613fb4565b6116d984611624613d6b565b6116d485604051806060016040528060288152602001615b0a60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061168a613d6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461426a9092919063ffffffff16565b613d73565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006117a4611708613d6b565b8461179f8560016000611719613d6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461432a90919063ffffffff16565b613d73565b6001905092915050565b60118054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118445780601f1061181957610100808354040283529160200191611844565b820191906000526020600020905b81548152906001019060200180831161182757829003601f168201915b505050505081565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6118b26118ad613d6b565b611a10565b611907576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180615a046030913960400191505060405180910390fd5b600860009054906101000a900460ff16611989576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6119cd613d6b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000611a268260076143b290919063ffffffff16565b9050919050565b611a3561252f565b611aa7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600f549050600060105490506000600f81905550600060108190555060003373ffffffffffffffffffffffffffffffffffffffff168360405180600001905060006040518083038185875af1925050503d8060008114611b25576040519150601f19603f3d011682016040523d82523d6000602084013e611b2a565b606091505b5050905080611ba1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4275726e207472616e73666572206661696c656400000000000000000000000081525060200191505060405180910390fd5b611bf5611bac612505565b83600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166144909092919063ffffffff16565b7f21d569489960a26b91b1835681ce7a1f605eff218f6f60204ff9567f62de827883834260405180848152602001838152602001828152602001935050505060405180910390a1505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c6f61252f565b611ce1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611ceb8282614561565b5050565b60138060000154908060010154908060020154905083565b611d0f61252f565b611d81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600081611dae577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611db1565b60005b9050600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611e7e57600080fd5b505af1158015611e92573d6000803e3d6000fd5b505050506040513d6020811015611ea857600080fd5b8101908080519060200190929190505050505050565b611ec661252f565b611f38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600c8290806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050600d8190806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461205b57612056816000614561565b612065565b6120648261467d565b5b5050565b6000600860009054906101000a900460ff16905090565b61209061208b613d6b565b6146d8565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6120e261252f565b612154576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600080600281111561222357fe5b82600281111561222f57fe5b141561224257601360000154905061229a565b6001600281111561224f57fe5b82600281111561225b57fe5b141561226e57601360010154905061229a565b60028081111561227a57fe5b82600281111561228657fe5b141561229957601360020154905061229a565b5b919050565b6122a761252f565b612319576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6123228161467d565b50565b612335612330613d6b565b611a10565b61238a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180615a046030913960400191505060405180910390fd5b61239381614732565b50565b6123a66123a1613d6b565b611a10565b6123fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180615a046030913960400191505060405180910390fd5b600860009054906101000a900460ff161561247e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124c2613d6b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612572613d6b565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600860009054906101000a900460ff1615612611576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b60008111612687576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4d75737420636f6e74726962757465204b4e430000000000000000000000000081525060200191505060405180910390fd5b6126d6333083600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661478c909392919063ffffffff16565b60006126e061300d565b90506126ed826000614892565b506126fe6126f96114da565b6148fa565b60006127098261498a565b90503373ffffffffffffffffffffffffffffffffffffffff167fa3459104582c6b783099f4ab729cf424eadd2d6327b78c2c1afd2518c599159184834260405180848152602001838152602001828152602001935050505060405180910390a26127733382614a0a565b505050565b600061278f600f5447613f6a90919063ffffffff16565b905090565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561282c5780601f106128015761010080835404028352916020019161282c565b820191906000526020600020905b81548152906001019060200180831161280f57829003601f168201915b5050505050905090565b600860009054906101000a900460ff16156128b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6000341161292f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4d7573742073656e64206574682077697468207478000000000000000000000081525060200191505060405180910390fd5b600061294b3461293d612778565b613f6a90919063ffffffff16565b9050600061295a600083614bc5565b905060006129718234613f6a90919063ffffffff16565b9050600061297d61300d565b90506129898286614c46565b6129996129946114da565b6148fa565b60006129a48261498a565b90503373ffffffffffffffffffffffffffffffffffffffff167f366a79bf6ff49b7f5437da5fe54909dd3a1b379aa81f218210171219ce898b3234834260405180848152602001838152602001828152602001935050505060405180910390a2612a0e3382614a0a565b505050505050565b6000612ad9612a23613d6b565b84612ad485604051806060016040528060258152602001615c426025913960016000612a4d613d6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461426a9092919063ffffffff16565b613d73565b6001905092915050565b612aeb61252f565b612b5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b838390508686905014612bd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f417272617973206d75737420626520657175616c206c656e677468000000000081525060200191505060405180910390fd5b818190508484905014612c53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f417272617973206d75737420626520657175616c206c656e677468000000000081525060200191505060405180910390fd5b6000612c5d612778565b905060008090505b87879050811015612fd457600c8181548110612c7d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353fa2eb7308b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612d2e57600080fd5b505af1158015612d42573d6000803e3d6000fd5b505050506040513d6020811015612d5857600080fd5b81019080805190602001909291905050505073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff16600d8281548110612da257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e52577fb862b880d30bed796a1e026db6f2c577b83754c968922001b48475e0ffd7e229612e2483612e16612778565b613f6a90919063ffffffff16565b42604051808381526020018281526020019250505060405180910390a1612e4c600283614bc5565b50612f86565b6000600d8281548110612e6157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612f0857600080fd5b505afa158015612f1c573d6000803e3d6000fd5b505050506040513d6020811015612f3257600080fd5b810190808051906020019092919050505090507fc4f4bbfeea0b2b771381b089b2191fad7b28a4a71d74b678dd3ed9218b24f4cf8142604051808381526020018281526020019250505060405180910390a1505b612fc7888883818110612f9557fe5b90506020020135878784818110612fa857fe5b90506020020135868685818110612fbb57fe5b90506020020135614d52565b8080600101915050612c65565b50612fe5612fe06114da565b6148fa565b5050505050505050565b6000613003612ffc613d6b565b8484613fb4565b6001905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663072b77f1306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156130ae57600080fd5b505afa1580156130c2573d6000803e3d6000fd5b505050506040513d60208110156130d857600080fd5b8101908080519060200190929190505050905090565b6130f661252f565b613168576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b384abef83836040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b1580156131e557600080fd5b505af11580156131f9573d6000803e3d6000fd5b505050505050565b61320961252f565b61327b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008090505b868690508110156132da576132cd87878381811061329b57fe5b905060200201358686848181106132ae57fe5b905060200201358585858181106132c157fe5b90506020020135614d52565b8080600101915050613281565b506132eb6132e66114da565b6148fa565b505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860019054906101000a900460ff166133fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6000600860016101000a81548160ff0219169083151502179055508261342133612092565b1015613495576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f496e73756666696369656e742062616c616e636500000000000000000000000081525060200191505060405180910390fd5b60006134ca6134a26114d0565b6134bc866134ae61300d565b614f2490919063ffffffff16565b614faa90919063ffffffff16565b90506134d581614ff4565b6134df3385615084565b82156135595760006134f2826001614892565b90506135533361350b8385613f6a90919063ffffffff16565b600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166144909092919063ffffffff16565b50613785565b6000613563612778565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633bba21dc600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff166135ce6114da565b866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020019350505050602060405180830381600087803b15801561363f57600080fd5b505af1158015613653573d6000803e3d6000fd5b505050506040513d602081101561366957600080fd5b810190808051906020019092919050505050613686600182614bc5565b5060006136a382613695612778565b613f6a90919063ffffffff16565b905060003373ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114613705576040519150601f19603f3d011682016040523d82523d6000602084013e61370a565b606091505b5050905080613781576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4275726e207472616e73666572206661696c656400000000000000000000000081525060200191505060405180910390fd5b5050505b3373ffffffffffffffffffffffffffffffffffffffff167f76ef489c3b5e8444b2316d6d64d0d670f927366b9e73226ed8493619ee17760e8486426040518084151515158152602001838152602001828152602001935050505060405180910390a2506001600860016101000a81548160ff021916908315150217905550505050565b61381061252f565b613882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fa850ae9193f515cbae8d35e8925bd2be26627fc91bce650b8652ed254e9cab0360405160405180910390a250565b600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61394e61252f565b6139c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6064831015806139d05750600083145b613a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615c116031913960400191505060405180910390fd5b6064821015613a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615b9a6029913960400191505060405180910390fd5b600a811015613af6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436c61696d20666565206d757374206265206c657373207468616e203130250081525060200191505060405180910390fd5b8260136000018190555081601360010181905550806013600201819055507f985786ed84548f26eae234688f08682cdd04f5b552190a894b31307afd72c46a83838360405180848152602001838152602001828152602001935050505060405180910390a1505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b613bb461252f565b613c26576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fcdd2e9b91a56913d370075169cefa1602ba36be5301664f752192bb1709df75760405160405180910390a250565b613ccc61252f565b613d3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b613d478161523c565b50565b600e8181548110613d5757fe5b906000526020600020016000915090505481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615bc36024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615a5a6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000613fac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061426a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561403a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615b756025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156140c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806159bf6023913960400191505060405180910390fd5b61412b81604051806060016040528060268152602001615a7c602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461426a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141be816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461432a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290614317576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156142dc5780820151818401526020810190506142c1565b50505050905090810190601f1680156143095780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808284019050838110156143a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615b326022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61455c838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050615382565b505050565b60008161458e577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff614591565b60005b90508273ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561463c57600080fd5b505af1158015614650573d6000803e3d6000fd5b505050506040513d602081101561466657600080fd5b810190808051906020019092919050505050505050565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6146ec8160076155cd90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b61474681600761568a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b61488c848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050615382565b50505050565b600061489d3361184c565b6148f35760006148ac83612215565b905060008114156148c15760009150506148f4565b6148d48185614faa90919063ffffffff16565b91506148eb8260105461432a90919063ffffffff16565b601081905550505b5b92915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6b55f25826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561496f57600080fd5b505af1158015614983573d6000803e3d6000fd5b5050505050565b60008061499561300d565b905060006149a16114d0565b14156149c3576149bb600a82614f2490919063ffffffff16565b915050614a05565b614a01836149f36149d26114d0565b6149e58786613f6a90919063ffffffff16565b614f2490919063ffffffff16565b614faa90919063ffffffff16565b9150505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614aad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b614ac28160025461432a90919063ffffffff16565b600281905550614b19816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461432a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000614bd03361184c565b614c3f576000614bdf84612215565b90506000811415614bf4576000915050614c40565b614c2081614c1285614c04612778565b613f6a90919063ffffffff16565b614faa90919063ffffffff16565b9150614c3782600f5461432a90919063ffffffff16565b600f81905550505b5b92915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637a2a045683600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001925050506020604051808303818588803b158015614d1157600080fd5b505af1158015614d25573d6000803e3d6000fd5b50505050506040513d6020811015614d3c57600080fd5b8101908080519060200190929190505050505050565b6000600d8481548110614d6157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614e08576000614de2612778565b905080851015614df457849150614df8565b8091505b614e028285614c46565b50614f1d565b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015614e8757600080fd5b505afa158015614e9b573d6000803e3d6000fd5b505050506040513d6020811015614eb157600080fd5b8101908080519060200190929190505050905080851015614ed457849150614ed8565b8091505b6000614ee26114da565b9050614eef848487615765565b6000614ef96114da565b9050614f18614f118383613f6a90919063ffffffff16565b6002614892565b505050505b5050505050565b600080831415614f375760009050614fa4565b6000828402905082848281614f4857fe5b0414614f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615ae96021913960400191505060405180910390fd5b809150505b92915050565b6000614fec83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506158ad565b905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561506957600080fd5b505af115801561507d573d6000803e3d6000fd5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561510a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615b546021913960400191505060405180910390fd5b615175816040518060600160405280602281526020016159e2602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461426a9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151cc81600254613f6a90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156152c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615a346026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6153a18273ffffffffffffffffffffffffffffffffffffffff16615973565b615413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b60208310615462578051825260208201915060208101905060208303925061543f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146154c4576040519150601f19603f3d011682016040523d82523d6000602084013e6154c9565b606091505b509150915081615541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b6000815111156155c75780806020019051602081101561556057600080fd5b81019080805190602001909291905050506155c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615be7602a913960400191505060405180910390fd5b5b50505050565b6155d782826143b2565b61562c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615aa26021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61569482826143b2565b15615707576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637409e2eb8484600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001945050505050602060405180830381600087803b15801561586c57600080fd5b505af1158015615880573d6000803e3d6000fd5b505050506040513d602081101561589657600080fd5b810190808051906020019092919050505050505050565b60008083118290615959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561591e578082015181840152602081019050615903565b50505050905090810190601f16801561594b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161596557fe5b049050809150509392505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91508082141580156159b557506000801b8214155b9250505091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f6e6c7920617070726f76656420616464726573732063616e207573652066616c6c6261636b536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734275726e20666565206d75737420626520657175616c20746f206f72206c657373207468616e20312545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565644d696e7420666565206d757374206265207a65726f206f7220657175616c20746f206f72206c657373207468616e20312545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158204f2bc68790e679eff7bf0f4df9aee30b10b69380669182d7556fd2cb99d4b06a64736f6c634300050f0032526f6c65733a206163636f756e7420697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000ecf0bdb7b3f349abfd68c3563678124c5e8aaea30000000000000000000000009aab3f75489902f3a48495025729a0af77d4b11e000000000000000000000000dd974d5c2e2928dea5f71b9825b8b646686bd20000000000000000000000000049bdd8854481005bba4acebabf6e06cd5f6312e90000000000000000000000000000000000000000000000000000000000000015784b4e43204d616e646174653a205374616b6572730000000000000000000000
Deployed Bytecode
0x6080604052600436106102935760003560e01c806382dc1ec41161015a578063b384abef116100c1578063e7654b3c1161007a578063e7654b3c14611222578063f0359d1b14611271578063f0eeed81146112c8578063f27a795a1461131f578063f2fde38b14611370578063f4d4042a146113c157610293565b8063b384abef14610f2f578063c4ede67d14610f74578063dd62ed3e146110a4578063df22db8814611129578063e43252d71461117a578063e61387e0146111cb57610293565b806395d89b411161011357806395d89b4114610c26578063a0712d6814610cb6578063a457c2d714610ce4578063a620daef14610d57578063a9059cbb14610e91578063ad4258bd14610f0457610293565b806382dc1ec414610ad25780638456cb5914610b235780638da5cb5b14610b3a5780638f32d59b14610b9157806391fe898514610bc05780639560267514610bfb57610293565b8063476343ee116101fe5780635c975abb116101b75780635c975abb1461096d5780636ef8d66d1461099c57806370a08231146109b3578063715018a614610a185780637c70fb5714610a2f578063828bdfb414610a8157610293565b8063476343ee146107bb5780634d8f5105146107d257806351be62fa14610829578063528d871114610886578063544e3a5b146108bf5780635793e155146108fc57610293565b8063313ce56711610250578063313ce5671461059e57806339509351146105cf57806339b1b96d146106425780633af32abf146106d25780633f4ba83a1461073b57806346fbf68e1461075257610293565b806306fdde0314610337578063095ea7b3146103c757806318160ddd1461043a57806320cbf72c14610465578063215834681461049057806323b872dd1461050b575b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610335576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615ac36026913960400191505060405180910390fd5b005b34801561034357600080fd5b5061034c611410565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038c578082015181840152602081019050610371565b50505050905090810190601f1680156103b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103d357600080fd5b50610420600480360360408110156103ea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114b2565b604051808215151515815260200191505060405180910390f35b34801561044657600080fd5b5061044f6114d0565b6040518082815260200191505060405180910390f35b34801561047157600080fd5b5061047a6114da565b6040518082815260200191505060405180910390f35b34801561049c57600080fd5b506104c9600480360360208110156104b357600080fd5b81019080803590602001909291905050506115cf565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561051757600080fd5b506105846004803603606081101561052e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061160b565b604051808215151515815260200191505060405180910390f35b3480156105aa57600080fd5b506105b36116e4565b604051808260ff1660ff16815260200191505060405180910390f35b3480156105db57600080fd5b50610628600480360360408110156105f257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116fb565b604051808215151515815260200191505060405180910390f35b34801561064e57600080fd5b506106576117ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561069757808201518184015260208101905061067c565b50505050905090810190601f1680156106c45780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156106de57600080fd5b50610721600480360360208110156106f557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061184c565b604051808215151515815260200191505060405180910390f35b34801561074757600080fd5b506107506118a2565b005b34801561075e57600080fd5b506107a16004803603602081101561077557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a10565b604051808215151515815260200191505060405180910390f35b3480156107c757600080fd5b506107d0611a2d565b005b3480156107de57600080fd5b506107e7611c41565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561083557600080fd5b506108846004803603604081101561084c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611c67565b005b34801561089257600080fd5b5061089b611cef565b60405180848152602001838152602001828152602001935050505060405180910390f35b3480156108cb57600080fd5b506108fa600480360360208110156108e257600080fd5b81019080803515159060200190929190505050611d07565b005b34801561090857600080fd5b5061096b6004803603604081101561091f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ebe565b005b34801561097957600080fd5b50610982612069565b604051808215151515815260200191505060405180910390f35b3480156109a857600080fd5b506109b1612080565b005b3480156109bf57600080fd5b50610a02600480360360208110156109d657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612092565b6040518082815260200191505060405180910390f35b348015610a2457600080fd5b50610a2d6120da565b005b348015610a3b57600080fd5b50610a6b60048036036020811015610a5257600080fd5b81019080803560ff169060200190929190505050612215565b6040518082815260200191505060405180910390f35b348015610a8d57600080fd5b50610ad060048036036020811015610aa457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061229f565b005b348015610ade57600080fd5b50610b2160048036036020811015610af557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612325565b005b348015610b2f57600080fd5b50610b38612396565b005b348015610b4657600080fd5b50610b4f612505565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610b9d57600080fd5b50610ba661252f565b604051808215151515815260200191505060405180910390f35b348015610bcc57600080fd5b50610bf960048036036020811015610be357600080fd5b810190808035906020019092919050505061258e565b005b348015610c0757600080fd5b50610c10612778565b6040518082815260200191505060405180910390f35b348015610c3257600080fd5b50610c3b612794565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610c7b578082015181840152602081019050610c60565b50505050905090810190601f168015610ca85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610ce260048036036020811015610ccc57600080fd5b8101908080359060200190929190505050612836565b005b348015610cf057600080fd5b50610d3d60048036036040811015610d0757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612a16565b604051808215151515815260200191505060405180910390f35b348015610d6357600080fd5b50610e8f60048036036080811015610d7a57600080fd5b810190808035906020019092919080359060200190640100000000811115610da157600080fd5b820183602082011115610db357600080fd5b80359060200191846020830284011164010000000083111715610dd557600080fd5b909192939192939080359060200190640100000000811115610df657600080fd5b820183602082011115610e0857600080fd5b80359060200191846020830284011164010000000083111715610e2a57600080fd5b909192939192939080359060200190640100000000811115610e4b57600080fd5b820183602082011115610e5d57600080fd5b80359060200191846020830284011164010000000083111715610e7f57600080fd5b9091929391929390505050612ae3565b005b348015610e9d57600080fd5b50610eea60048036036040811015610eb457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612fef565b604051808215151515815260200191505060405180910390f35b348015610f1057600080fd5b50610f1961300d565b6040518082815260200191505060405180910390f35b348015610f3b57600080fd5b50610f7260048036036040811015610f5257600080fd5b8101908080359060200190929190803590602001909291905050506130ee565b005b348015610f8057600080fd5b506110a260048036036060811015610f9757600080fd5b8101908080359060200190640100000000811115610fb457600080fd5b820183602082011115610fc657600080fd5b80359060200191846020830284011164010000000083111715610fe857600080fd5b90919293919293908035906020019064010000000081111561100957600080fd5b82018360208201111561101b57600080fd5b8035906020019184602083028401116401000000008311171561103d57600080fd5b90919293919293908035906020019064010000000081111561105e57600080fd5b82018360208201111561107057600080fd5b8035906020019184602083028401116401000000008311171561109257600080fd5b9091929391929390505050613201565b005b3480156110b057600080fd5b50611113600480360360408110156110c757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506132f3565b6040518082815260200191505060405180910390f35b34801561113557600080fd5b506111786004803603606081101561114c57600080fd5b81019080803590602001909291908035151590602001909291908035906020019092919050505061337a565b005b34801561118657600080fd5b506111c96004803603602081101561119d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613808565b005b3480156111d757600080fd5b506111e0613920565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561122e57600080fd5b5061126f6004803603606081101561124557600080fd5b81019080803590602001909291908035906020019092919080359060200190929190505050613946565b005b34801561127d57600080fd5b50611286613b60565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156112d457600080fd5b506112dd613b86565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561132b57600080fd5b5061136e6004803603602081101561134257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613bac565b005b34801561137c57600080fd5b506113bf6004803603602081101561139357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050613cc4565b005b3480156113cd57600080fd5b506113fa600480360360208110156113e457600080fd5b8101908080359060200190929190505050613d4a565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114a85780601f1061147d576101008083540402835291602001916114a8565b820191906000526020600020905b81548152906001019060200180831161148b57829003601f168201915b5050505050905090565b60006114c66114bf613d6b565b8484613d73565b6001905092915050565b6000600254905090565b60006115ca601054600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561158157600080fd5b505afa158015611595573d6000803e3d6000fd5b505050506040513d60208110156115ab57600080fd5b8101908080519060200190929190505050613f6a90919063ffffffff16565b905090565b600c81815481106115dc57fe5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611618848484613fb4565b6116d984611624613d6b565b6116d485604051806060016040528060288152602001615b0a60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061168a613d6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461426a9092919063ffffffff16565b613d73565b600190509392505050565b6000600560009054906101000a900460ff16905090565b60006117a4611708613d6b565b8461179f8560016000611719613d6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461432a90919063ffffffff16565b613d73565b6001905092915050565b60118054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118445780601f1061181957610100808354040283529160200191611844565b820191906000526020600020905b81548152906001019060200180831161182757829003601f168201915b505050505081565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6118b26118ad613d6b565b611a10565b611907576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180615a046030913960400191505060405180910390fd5b600860009054906101000a900460ff16611989576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600860006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6119cd613d6b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000611a268260076143b290919063ffffffff16565b9050919050565b611a3561252f565b611aa7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600f549050600060105490506000600f81905550600060108190555060003373ffffffffffffffffffffffffffffffffffffffff168360405180600001905060006040518083038185875af1925050503d8060008114611b25576040519150601f19603f3d011682016040523d82523d6000602084013e611b2a565b606091505b5050905080611ba1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4275726e207472616e73666572206661696c656400000000000000000000000081525060200191505060405180910390fd5b611bf5611bac612505565b83600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166144909092919063ffffffff16565b7f21d569489960a26b91b1835681ce7a1f605eff218f6f60204ff9567f62de827883834260405180848152602001838152602001828152602001935050505060405180910390a1505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c6f61252f565b611ce1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611ceb8282614561565b5050565b60138060000154908060010154908060020154905083565b611d0f61252f565b611d81576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600081611dae577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff611db1565b60005b9050600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611e7e57600080fd5b505af1158015611e92573d6000803e3d6000fd5b505050506040513d6020811015611ea857600080fd5b8101908080519060200190929190505050505050565b611ec661252f565b611f38576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600c8290806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050600d8190806001815401808255809150509060018203906000526020600020016000909192909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461205b57612056816000614561565b612065565b6120648261467d565b5b5050565b6000600860009054906101000a900460ff16905090565b61209061208b613d6b565b6146d8565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6120e261252f565b612154576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600080600281111561222357fe5b82600281111561222f57fe5b141561224257601360000154905061229a565b6001600281111561224f57fe5b82600281111561225b57fe5b141561226e57601360010154905061229a565b60028081111561227a57fe5b82600281111561228657fe5b141561229957601360020154905061229a565b5b919050565b6122a761252f565b612319576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6123228161467d565b50565b612335612330613d6b565b611a10565b61238a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180615a046030913960400191505060405180910390fd5b61239381614732565b50565b6123a66123a1613d6b565b611a10565b6123fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180615a046030913960400191505060405180910390fd5b600860009054906101000a900460ff161561247e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600860006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124c2613d6b565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16612572613d6b565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b600860009054906101000a900460ff1615612611576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b60008111612687576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f4d75737420636f6e74726962757465204b4e430000000000000000000000000081525060200191505060405180910390fd5b6126d6333083600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661478c909392919063ffffffff16565b60006126e061300d565b90506126ed826000614892565b506126fe6126f96114da565b6148fa565b60006127098261498a565b90503373ffffffffffffffffffffffffffffffffffffffff167fa3459104582c6b783099f4ab729cf424eadd2d6327b78c2c1afd2518c599159184834260405180848152602001838152602001828152602001935050505060405180910390a26127733382614a0a565b505050565b600061278f600f5447613f6a90919063ffffffff16565b905090565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561282c5780601f106128015761010080835404028352916020019161282c565b820191906000526020600020905b81548152906001019060200180831161280f57829003601f168201915b5050505050905090565b600860009054906101000a900460ff16156128b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6000341161292f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f4d7573742073656e64206574682077697468207478000000000000000000000081525060200191505060405180910390fd5b600061294b3461293d612778565b613f6a90919063ffffffff16565b9050600061295a600083614bc5565b905060006129718234613f6a90919063ffffffff16565b9050600061297d61300d565b90506129898286614c46565b6129996129946114da565b6148fa565b60006129a48261498a565b90503373ffffffffffffffffffffffffffffffffffffffff167f366a79bf6ff49b7f5437da5fe54909dd3a1b379aa81f218210171219ce898b3234834260405180848152602001838152602001828152602001935050505060405180910390a2612a0e3382614a0a565b505050505050565b6000612ad9612a23613d6b565b84612ad485604051806060016040528060258152602001615c426025913960016000612a4d613d6b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461426a9092919063ffffffff16565b613d73565b6001905092915050565b612aeb61252f565b612b5d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b838390508686905014612bd8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f417272617973206d75737420626520657175616c206c656e677468000000000081525060200191505060405180910390fd5b818190508484905014612c53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f417272617973206d75737420626520657175616c206c656e677468000000000081525060200191505060405180910390fd5b6000612c5d612778565b905060008090505b87879050811015612fd457600c8181548110612c7d57fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166353fa2eb7308b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612d2e57600080fd5b505af1158015612d42573d6000803e3d6000fd5b505050506040513d6020811015612d5857600080fd5b81019080805190602001909291905050505073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff16600d8281548110612da257fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e52577fb862b880d30bed796a1e026db6f2c577b83754c968922001b48475e0ffd7e229612e2483612e16612778565b613f6a90919063ffffffff16565b42604051808381526020018281526020019250505060405180910390a1612e4c600283614bc5565b50612f86565b6000600d8281548110612e6157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612f0857600080fd5b505afa158015612f1c573d6000803e3d6000fd5b505050506040513d6020811015612f3257600080fd5b810190808051906020019092919050505090507fc4f4bbfeea0b2b771381b089b2191fad7b28a4a71d74b678dd3ed9218b24f4cf8142604051808381526020018281526020019250505060405180910390a1505b612fc7888883818110612f9557fe5b90506020020135878784818110612fa857fe5b90506020020135868685818110612fbb57fe5b90506020020135614d52565b8080600101915050612c65565b50612fe5612fe06114da565b6148fa565b5050505050505050565b6000613003612ffc613d6b565b8484613fb4565b6001905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663072b77f1306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156130ae57600080fd5b505afa1580156130c2573d6000803e3d6000fd5b505050506040513d60208110156130d857600080fd5b8101908080519060200190929190505050905090565b6130f661252f565b613168576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b384abef83836040518363ffffffff1660e01b81526004018083815260200182815260200192505050600060405180830381600087803b1580156131e557600080fd5b505af11580156131f9573d6000803e3d6000fd5b505050505050565b61320961252f565b61327b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60008090505b868690508110156132da576132cd87878381811061329b57fe5b905060200201358686848181106132ae57fe5b905060200201358585858181106132c157fe5b90506020020135614d52565b8080600101915050613281565b506132eb6132e66114da565b6148fa565b505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860019054906101000a900460ff166133fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b6000600860016101000a81548160ff0219169083151502179055508261342133612092565b1015613495576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f496e73756666696369656e742062616c616e636500000000000000000000000081525060200191505060405180910390fd5b60006134ca6134a26114d0565b6134bc866134ae61300d565b614f2490919063ffffffff16565b614faa90919063ffffffff16565b90506134d581614ff4565b6134df3385615084565b82156135595760006134f2826001614892565b90506135533361350b8385613f6a90919063ffffffff16565b600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166144909092919063ffffffff16565b50613785565b6000613563612778565b9050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633bba21dc600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff166135ce6114da565b866040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020019350505050602060405180830381600087803b15801561363f57600080fd5b505af1158015613653573d6000803e3d6000fd5b505050506040513d602081101561366957600080fd5b810190808051906020019092919050505050613686600182614bc5565b5060006136a382613695612778565b613f6a90919063ffffffff16565b905060003373ffffffffffffffffffffffffffffffffffffffff168260405180600001905060006040518083038185875af1925050503d8060008114613705576040519150601f19603f3d011682016040523d82523d6000602084013e61370a565b606091505b5050905080613781576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4275726e207472616e73666572206661696c656400000000000000000000000081525060200191505060405180910390fd5b5050505b3373ffffffffffffffffffffffffffffffffffffffff167f76ef489c3b5e8444b2316d6d64d0d670f927366b9e73226ed8493619ee17760e8486426040518084151515158152602001838152602001828152602001935050505060405180910390a2506001600860016101000a81548160ff021916908315150217905550505050565b61381061252f565b613882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fa850ae9193f515cbae8d35e8925bd2be26627fc91bce650b8652ed254e9cab0360405160405180910390a250565b600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61394e61252f565b6139c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6064831015806139d05750600083145b613a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180615c116031913960400191505060405180910390fd5b6064821015613a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180615b9a6029913960400191505060405180910390fd5b600a811015613af6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f436c61696d20666565206d757374206265206c657373207468616e203130250081525060200191505060405180910390fd5b8260136000018190555081601360010181905550806013600201819055507f985786ed84548f26eae234688f08682cdd04f5b552190a894b31307afd72c46a83838360405180848152602001838152602001828152602001935050505060405180910390a1505050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b613bb461252f565b613c26576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167fcdd2e9b91a56913d370075169cefa1602ba36be5301664f752192bb1709df75760405160405180910390a250565b613ccc61252f565b613d3e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b613d478161523c565b50565b600e8181548110613d5757fe5b906000526020600020016000915090505481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180615bc36024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615a5a6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000613fac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061426a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561403a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180615b756025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156140c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806159bf6023913960400191505060405180910390fd5b61412b81604051806060016040528060268152602001615a7c602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461426a9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506141be816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461432a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290614317576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156142dc5780820151818401526020810190506142c1565b50505050905090810190601f1680156143095780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808284019050838110156143a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180615b326022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61455c838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb905060e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050615382565b505050565b60008161458e577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff614591565b60005b90508273ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561463c57600080fd5b505af1158015614650573d6000803e3d6000fd5b505050506040513d602081101561466657600080fd5b810190808051906020019092919050505050505050565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6146ec8160076155cd90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b61474681600761568a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b61488c848573ffffffffffffffffffffffffffffffffffffffff166323b872dd905060e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050615382565b50505050565b600061489d3361184c565b6148f35760006148ac83612215565b905060008114156148c15760009150506148f4565b6148d48185614faa90919063ffffffff16565b91506148eb8260105461432a90919063ffffffff16565b601081905550505b5b92915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6b55f25826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561496f57600080fd5b505af1158015614983573d6000803e3d6000fd5b5050505050565b60008061499561300d565b905060006149a16114d0565b14156149c3576149bb600a82614f2490919063ffffffff16565b915050614a05565b614a01836149f36149d26114d0565b6149e58786613f6a90919063ffffffff16565b614f2490919063ffffffff16565b614faa90919063ffffffff16565b9150505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614aad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b614ac28160025461432a90919063ffffffff16565b600281905550614b19816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461432a90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000614bd03361184c565b614c3f576000614bdf84612215565b90506000811415614bf4576000915050614c40565b614c2081614c1285614c04612778565b613f6a90919063ffffffff16565b614faa90919063ffffffff16565b9150614c3782600f5461432a90919063ffffffff16565b600f81905550505b5b92915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637a2a045683600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518463ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001925050506020604051808303818588803b158015614d1157600080fd5b505af1158015614d25573d6000803e3d6000fd5b50505050506040513d6020811015614d3c57600080fd5b8101908080519060200190929190505050505050565b6000600d8481548110614d6157fe5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614e08576000614de2612778565b905080851015614df457849150614df8565b8091505b614e028285614c46565b50614f1d565b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015614e8757600080fd5b505afa158015614e9b573d6000803e3d6000fd5b505050506040513d6020811015614eb157600080fd5b8101908080519060200190929190505050905080851015614ed457849150614ed8565b8091505b6000614ee26114da565b9050614eef848487615765565b6000614ef96114da565b9050614f18614f118383613f6a90919063ffffffff16565b6002614892565b505050505b5050505050565b600080831415614f375760009050614fa4565b6000828402905082848281614f4857fe5b0414614f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615ae96021913960400191505060405180910390fd5b809150505b92915050565b6000614fec83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506158ad565b905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561506957600080fd5b505af115801561507d573d6000803e3d6000fd5b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561510a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615b546021913960400191505060405180910390fd5b615175816040518060600160405280602281526020016159e2602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461426a9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506151cc81600254613f6a90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156152c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180615a346026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6153a18273ffffffffffffffffffffffffffffffffffffffff16615973565b615413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740081525060200191505060405180910390fd5b600060608373ffffffffffffffffffffffffffffffffffffffff16836040518082805190602001908083835b60208310615462578051825260208201915060208101905060208303925061543f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146154c4576040519150601f19603f3d011682016040523d82523d6000602084013e6154c9565b606091505b509150915081615541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656481525060200191505060405180910390fd5b6000815111156155c75780806020019051602081101561556057600080fd5b81019080805190602001909291905050506155c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615be7602a913960400191505060405180910390fd5b5b50505050565b6155d782826143b2565b61562c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180615aa26021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61569482826143b2565b15615707576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637409e2eb8484600860029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001828152602001945050505050602060405180830381600087803b15801561586c57600080fd5b505af1158015615880573d6000803e3d6000fd5b505050506040513d602081101561589657600080fd5b810190808051906020019092919050505050505050565b60008083118290615959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561591e578082015181840152602081019050615903565b50505050905090810190601f16801561594b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161596557fe5b049050809150509392505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f91508082141580156159b557506000801b8214155b9250505091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c654f6e6c7920617070726f76656420616464726573732063616e207573652066616c6c6261636b536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734275726e20666565206d75737420626520657175616c20746f206f72206c657373207468616e20312545524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565644d696e7420666565206d757374206265207a65726f206f7220657175616c20746f206f72206c657373207468616e20312545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158204f2bc68790e679eff7bf0f4df9aee30b10b69380669182d7556fd2cb99d4b06a64736f6c634300050f0032
Deployed Bytecode Sourcemap
37635:17265:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54789:22;:34;54812:10;54789:34;;;;;;;;;;;;;;;;;;;;;;;;;54767:122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37635:17265;25485:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25485:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25485:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12136:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12136:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12136:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11157:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11157:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50116:147;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50116:147:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38013:42;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38013:42:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38013:42:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12760:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12760:304:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12760:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;26337:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26337:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13473:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13473:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13473:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38364:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38364:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;38364:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36095:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36095:104:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;36095:104:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;30546:120;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30546:120:0;;;:::i;:::-;;28025:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28025:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28025:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;53935:443;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53935:443:0;;;:::i;:::-;;37898:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37898:25:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;52669:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52669:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;52669:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38556:32;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38556:32:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52244:174;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52244:174:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;52244:174:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;51567:461;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51567:461:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51567:461:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29753:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29753:78:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28242:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28242:79:0;;;:::i;:::-;;11311:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11311:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11311:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34817:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34817:140:0;;;:::i;:::-;;51081:274;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51081:274:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;51081:274:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;54386:127;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54386:127:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;54386:127:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;28142:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28142:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28142:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;30333:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30333:118:0;;;:::i;:::-;;34006:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34006:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;34372:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34372:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;41186:590;;8:9:-1;5:2;;;30:1;27;20:12;5:2;41186:590:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41186:590:0;;;;;;;;;;;;;;;;;:::i;:::-;;49689:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49689:134:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25687:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25687:87:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25687:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40150:773;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40150:773:0;;;;;;;;;;;;;;;;;:::i;:::-;;14186:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14186:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14186:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45459:1407;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45459:1407:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;45459:1407:0;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45459:1407:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45459:1407:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;45459:1407:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45459:1407:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45459:1407:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;45459:1407:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;45459:1407:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45459:1407:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;45459:1407:0;;;;;;;;;;;;:::i;:::-;;11634:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11634:158:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11634:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;49898:138;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49898:138:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44768:121;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44768:121:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44768:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47286:467;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47286:467:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;47286:467:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;47286:467:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47286:467:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;47286:467:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;47286:467:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47286:467:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;47286:467:0;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;47286:467:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;47286:467:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;47286:467:0;;;;;;;;;;;;:::i;:::-;;11855:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11855:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11855:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42148:1339;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42148:1339:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42148:1339:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35813:131;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35813:131:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35813:131:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;37875:16;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37875:16:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;53278:649;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53278:649:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;53278:649:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37930:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37930:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;37970:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37970:36:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35949:141;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35949:141:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35949:141:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;35112:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35112:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35112:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;38243:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38243:28:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38243:28:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25485:83;25522:13;25555:5;25548:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25485:83;:::o;12136:152::-;12202:4;12219:39;12228:12;:10;:12::i;:::-;12242:7;12251:6;12219:8;:39::i;:::-;12276:4;12269:11;;12136:152;;;;:::o;11157:91::-;11201:7;11228:12;;11221:19;;11157:91;:::o;50116:147::-;50175:7;50202:53;50235:19;;50202:3;;;;;;;;;;;:13;;;50224:4;50202:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50202:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;50202:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50202:28:0;;;;;;;;;;;;;;;;:32;;:53;;;;:::i;:::-;50195:60;;50116:147;:::o;38013:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12760:304::-;12849:4;12866:36;12876:6;12884:9;12895:6;12866:9;:36::i;:::-;12913:121;12922:6;12930:12;:10;:12::i;:::-;12944:89;12982:6;12944:89;;;;;;;;;;;;;;;;;:11;:19;12956:6;12944:19;;;;;;;;;;;;;;;:33;12964:12;:10;:12::i;:::-;12944:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;12913:8;:121::i;:::-;13052:4;13045:11;;12760:304;;;;;:::o;26337:83::-;26378:5;26403:9;;;;;;;;;;;26396:16;;26337:83;:::o;13473:210::-;13553:4;13570:83;13579:12;:10;:12::i;:::-;13593:7;13602:50;13641:10;13602:11;:25;13614:12;:10;:12::i;:::-;13602:25;;;;;;;;;;;;;;;:34;13628:7;13602:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;13570:8;:83::i;:::-;13671:4;13664:11;;13473:210;;;;:::o;38364:21::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36095:104::-;36157:4;36175:9;:19;36185:8;36175:19;;;;;;;;;;;;;;;;;;;;;;;;;36168:26;;36095:104;;;:::o;30546:120::-;27922:22;27931:12;:10;:12::i;:::-;27922:8;:22::i;:::-;27914:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30189:7;;;;;;;;;;;30181:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30615:5;30605:7;;:15;;;;;;;;;;;;;;;;;;30636:22;30645:12;:10;:12::i;:::-;30636:22;;;;;;;;;;;;;;;;;;;;;;30546:120::o;28025:109::-;28081:4;28105:21;28118:7;28105:8;:12;;:21;;;;:::i;:::-;28098:28;;28025:109;;;:::o;53935:443::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53989:15;54007:19;;53989:37;;54037:15;54055:19;;54037:37;;54109:1;54087:19;:23;;;;54143:1;54121:19;:23;;;;54158:12;54176:10;:15;;54198:7;54176:34;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;54157:53:0;;;54229:7;54221:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54274:34;54291:7;:5;:7::i;:::-;54300;54274:3;;;;;;;;;;;:16;;;;:34;;;;;:::i;:::-;54324:46;54336:7;54345;54354:15;54324:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34275:1;;;53935:443::o;37898:25::-;;;;;;;;;;;;;:::o;52669:167::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52786:42;52813:6;52821;52786:26;:42::i;:::-;52669:167;;:::o;38556:32::-;;;;;;;;;;;;;;;;;;;:::o;52244:174::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52319:14;52336:6;:21;;38170:10;52336:21;;;52345:1;52336:21;52319:38;;52368:3;;;;;;;;;;;:11;;;52388:12;;;;;;;;;;;52403:6;52368:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52368:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;52368:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;52368:42:0;;;;;;;;;;;;;;;;;34275:1;52244:174;:::o;51567:461::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51706:16;51745:23;51706:64;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;51706:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51781:14;51801:13;51781:34;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;51781:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37824:42;51832:28;;:13;:28;;;51828:193;;51877:48;51904:13;51919:5;51877:26;:48::i;:::-;51828:193;;;51958:51;51985:23;51958:26;:51::i;:::-;51828:193;51567:461;;:::o;29753:78::-;29792:4;29816:7;;;;;;;;;;;29809:14;;29753:78;:::o;28242:79::-;28286:27;28300:12;:10;:12::i;:::-;28286:13;:27::i;:::-;28242:79::o;11311:110::-;11368:7;11395:9;:18;11405:7;11395:18;;;;;;;;;;;;;;;;11388:25;;11311:110;;;:::o;34817:140::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34916:1;34879:40;;34900:6;;;;;;;;;;;34879:40;;;;;;;;;;;;34947:1;34930:6;;:19;;;;;;;;;;;;;;;;;;34817:140::o;51081:274::-;51138:7;51171:13;51162:22;;;;;;;;:5;:22;;;;;;;;;51158:55;;;51193:12;:20;;;51186:27;;;;51158:55;51237:13;51228:22;;;;;;;;:5;:22;;;;;;;;;51224:55;;;51259:12;:20;;;51252:27;;;;51224:55;51303:14;51294:23;;;;;;;;:5;:23;;;;;;;;;51290:57;;;51326:12;:21;;;51319:28;;;;51290:57;51081:274;;;;:::o;54386:127::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54469:36;54496:8;54469:26;:36::i;:::-;54386:127;:::o;28142:92::-;27922:22;27931:12;:10;:12::i;:::-;27922:8;:22::i;:::-;27914:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28207:19;28218:7;28207:10;:19::i;:::-;28142:92;:::o;30333:118::-;27922:22;27931:12;:10;:12::i;:::-;27922:8;:22::i;:::-;27914:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29990:7;;;;;;;;;;;29989:8;29981:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30403:4;30393:7;;:14;;;;;;;;;;;;;;;;;;30423:20;30430:12;:10;:12::i;:::-;30423:20;;;;;;;;;;;;;;;;;;;;;;30333:118::o;34006:79::-;34044:7;34071:6;;;;;;;;;;;34064:13;;34006:79;:::o;34372:94::-;34412:4;34452:6;;;;;;;;;;;34436:22;;:12;:10;:12::i;:::-;:22;;;34429:29;;34372:94;:::o;41186:590::-;29990:7;;;;;;;;;;;29989:8;29981:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41288:1;41272:13;:17;41264:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41324:62;41345:10;41365:4;41372:13;41324:3;;;;;;;;;;;:20;;;;:62;;;;;;:::i;:::-;41399:24;41426:23;:21;:23::i;:::-;41399:50;;41460:47;41478:13;41493;41460:17;:47::i;:::-;;41520:38;41529:28;:26;:28::i;:::-;41520:8;:38::i;:::-;41571:18;41592:38;41613:16;41592:20;:38::i;:::-;41571:59;;41660:10;41648:67;;;41672:13;41687:10;41699:15;41648:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41733:35;41745:10;41757;41733:11;:35::i;:::-;41726:42;;41186:590;:::o;49689:134::-;49742:7;49769:46;49795:19;;49769:21;:25;;:46;;;;:::i;:::-;49762:53;;49689:134;:::o;25687:87::-;25726:13;25759:7;25752:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25687:87;:::o;40150:773::-;29990:7;;;;;;;;;;;29989:8;29981:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40243:1;40231:9;:13;40223:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40359:20;40382:37;40409:9;40382:22;:20;:22::i;:::-;:26;;:37;;;;:::i;:::-;40359:60;;40430:11;40444:46;40462:13;40477:12;40444:17;:46::i;:::-;40430:60;;40503:22;40528:18;40542:3;40528:9;:13;;:18;;;;:::i;:::-;40503:43;;40557:24;40584:23;:21;:23::i;:::-;40557:50;;40620:40;40636:14;40652:7;40620:15;:40::i;:::-;40671:38;40680:28;:26;:28::i;:::-;40671:8;:38::i;:::-;40722:18;40743:38;40764:16;40743:20;:38::i;:::-;40722:59;;40811:10;40799:63;;;40823:9;40834:10;40846:15;40799:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40880:35;40892:10;40904;40880:11;:35::i;:::-;40873:42;;;;;40150:773;:::o;14186:261::-;14271:4;14288:129;14297:12;:10;:12::i;:::-;14311:7;14320:96;14359:15;14320:96;;;;;;;;;;;;;;;;;:11;:25;14332:12;:10;:12::i;:::-;14320:25;;;;;;;;;;;;;;;:34;14346:7;14320:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;14288:8;:129::i;:::-;14435:4;14428:11;;14186:261;;;;:::o;45459:1407::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45722:16;;:23;;45694:17;;:24;;:51;45672:128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45860:8;;:15;;45833:16;;:23;;:42;45811:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45943:20;45966:22;:20;:22::i;:::-;45943:45;;46004:9;46016:1;46004:13;;45999:809;46023:17;;:24;;46019:1;:28;45999:809;;;46069:16;46086:1;46069:19;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;46115:4;46122:5;46069:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46069:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46069:59:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46069:59:0;;;;;;;;;;;;;;;;;37824:42;46149:32;;:14;46164:1;46149:17;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;46145:499;;;46207:136;46246:40;46273:12;46246:22;:20;:22::i;:::-;:26;;:40;;;;:::i;:::-;46309:15;46207:136;;;;;;;;;;;;;;;;;;;;;;;;46362:47;46380:14;46396:12;46362:17;:47::i;:::-;;46145:499;;;46450:16;46476:14;46491:1;46476:17;;;;;;;;;;;;;;;;;;;;;;;;;46469:35;;;46535:4;46469:90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46469:90:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46469:90:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46469:90:0;;;;;;;;;;;;;;;;46450:109;;46583:45;46602:8;46612:15;46583:45;;;;;;;;;;;;;;;;;;;;;;;;46145:499;;46660:136;46693:17;;46711:1;46693:20;;;;;;;;;;;;;46732:16;;46749:1;46732:19;;;;;;;;;;;;;46770:8;;46779:1;46770:11;;;;;;;;;;;;;46660:14;:136::i;:::-;46049:3;;;;;;;45999:809;;;;46820:38;46829:28;:26;:28::i;:::-;46820:8;:38::i;:::-;34275:1;45459:1407;;;;;;;:::o;11634:158::-;11703:4;11720:42;11730:12;:10;:12::i;:::-;11744:9;11755:6;11720:9;:42::i;:::-;11780:4;11773:11;;11634:158;;;;:::o;49898:138::-;49952:7;49979:12;;;;;;;;;;;:34;;;50022:4;49979:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49979:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49979:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49979:49:0;;;;;;;;;;;;;;;;49972:56;;49898:138;:::o;44768:121::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44848:8;;;;;;;;;;;:13;;;44862:10;44874:6;44848:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44848:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44848:33:0;;;;44768:121;;:::o;47286:467::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47482:9;47494:1;47482:13;;47477:218;47501:17;;:24;;47497:1;:28;47477:218;;;47547:136;47580:17;;47598:1;47580:20;;;;;;;;;;;;;47619:16;;47636:1;47619:19;;;;;;;;;;;;;47657:8;;47666:1;47657:11;;;;;;;;;;;;;47547:14;:136::i;:::-;47527:3;;;;;;;47477:218;;;;47707:38;47716:28;:26;:28::i;:::-;47707:8;:38::i;:::-;47286:467;;;;;;:::o;11855:134::-;11927:7;11954:11;:18;11966:5;11954:18;;;;;;;;;;;;;;;:27;11973:7;11954:27;;;;;;;;;;;;;;;;11947:34;;11855:134;;;;:::o;42148:1339::-;32712:11;;;;;;;;;;;32704:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32851:5;32837:11;;:19;;;;;;;;;;;;;;;;;;42340:18;42315:21;42325:10;42315:9;:21::i;:::-;:43;;42293:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42419:18;42440:90;42506:13;:11;:13::i;:::-;42440:47;42468:18;42440:23;:21;:23::i;:::-;:27;;:47;;;;:::i;:::-;:51;;:90;;;;:::i;:::-;42419:111;;42541:21;42551:10;42541:9;:21::i;:::-;42573:43;42585:10;42597:18;42573:11;:43::i;:::-;42633:12;42629:766;;;42662:11;42676:44;42694:10;42706:13;42676:17;:44::i;:::-;42662:58;;42735:49;42752:10;42764:19;42779:3;42764:10;:14;;:19;;;;:::i;:::-;42735:3;;;;;;;;;;;:16;;;;:49;;;;;:::i;:::-;42629:766;;;;42921:20;42944:22;:20;:22::i;:::-;42921:45;;42981:10;;;;;;;;;;;:27;;;43027:3;;;;;;;;;;;43049:28;:26;:28::i;:::-;43096:7;42981:137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;42981:137:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;42981:137:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42981:137:0;;;;;;;;;;;;;;;;;43135:46;43153:13;43168:12;43135:17;:46::i;:::-;;43198:17;43218:40;43245:12;43218:22;:20;:22::i;:::-;:26;;:40;;;;:::i;:::-;43198:60;;43274:12;43292:10;:15;;43314:9;43292:36;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;43273:55:0;;;43351:7;43343:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42629:766;;;;43417:10;43412:67;;;43429:12;43443:18;43463:15;43412:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32869:1;33031:4;33017:11;;:18;;;;;;;;;;;;;;;;;;42148:1339;;;:::o;35813:131::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35899:4;35877:9;:19;35887:8;35877:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;35930:8;35913:26;;;;;;;;;;;;35813:131;:::o;37875:16::-;;;;;;;;;;;;;:::o;53278:649::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53444:3;53432:8;:15;;:32;;;;53463:1;53451:8;:13;53432:32;53410:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53586:3;53574:8;:15;;53552:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53690:2;53677:9;:15;;53669:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53762:8;53739:12;:20;;:31;;;;53804:8;53781:12;:20;;:31;;;;53847:9;53823:12;:21;;:33;;;;53874:45;53889:8;53899;53909:9;53874:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53278:649;;;:::o;37930:33::-;;;;;;;;;;;;;:::o;37970:36::-;;;;;;;;;;;;;:::o;35949:141::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36040:5;36018:9;:19;36028:8;36018:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;36076:8;36055:30;;;;;;;;;;;;35949:141;:::o;35112:109::-;34218:9;:7;:9::i;:::-;34210:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35185:28;35204:8;35185:18;:28::i;:::-;35112:109;:::o;38243:28::-;;;;;;;;;;;;;;;;;;;;;;;;;:::o;858:98::-;903:15;938:10;931:17;;858:98;:::o;17117:338::-;17228:1;17211:19;;:5;:19;;;;17203:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17309:1;17290:21;;:7;:21;;;;17282:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17393:6;17363:11;:18;17375:5;17363:18;;;;;;;;;;;;;;;:27;17382:7;17363:27;;;;;;;;;;;;;;;:36;;;;17431:7;17415:32;;17424:5;17415:32;;;17440:6;17415:32;;;;;;;;;;;;;;;;;;17117:338;;;:::o;5445:136::-;5503:7;5530:43;5534:1;5537;5530:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5523:50;;5445:136;;;;:::o;14937:471::-;15053:1;15035:20;;:6;:20;;;;15027:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15137:1;15116:23;;:9;:23;;;;15108:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15212;15234:6;15212:71;;;;;;;;;;;;;;;;;:9;:17;15222:6;15212:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;15192:9;:17;15202:6;15192:17;;;;;;;;;;;;;;;:91;;;;15317:32;15342:6;15317:9;:20;15327:9;15317:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;15294:9;:20;15304:9;15294:20;;;;;;;;;;;;;;;:55;;;;15382:9;15365:35;;15374:6;15365:35;;;15393:6;15365:35;;;;;;;;;;;;;;;;;;14937:471;;;:::o;5918:192::-;6004:7;6037:1;6032;:6;;6040:12;6024:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;6024:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6064:9;6080:1;6076;:5;6064:17;;6101:1;6094:8;;;5918:192;;;;;:::o;4989:181::-;5047:7;5067:9;5083:1;5079;:5;5067:17;;5108:1;5103;:6;;5095:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5161:1;5154:8;;;4989:181;;;;:::o;27290:203::-;27362:4;27406:1;27387:21;;:7;:21;;;;27379:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27465:4;:11;;:20;27477:7;27465:20;;;;;;;;;;;;;;;;;;;;;;;;;27458:27;;27290:203;;;;:::o;21613:176::-;21696:85;21715:5;21745;:14;;;:23;;;;21770:2;21774:5;21722:58;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;21722:58:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;21722:58:0;21696:18;:85::i;:::-;21613:176;;;:::o;52844:192::-;52928:14;52945:6;:21;;38170:10;52945:21;;;52954:1;52945:21;52928:38;;52984:6;52977:22;;;53008:10;;;;;;;;;;;53021:6;52977:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52977:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;52977:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;52977:51:0;;;;;;;;;;;;;;;;;52844:192;;;:::o;54521:120::-;54629:4;54594:22;:32;54617:8;54594:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;54521:120;:::o;28459:130::-;28519:24;28535:7;28519:8;:15;;:24;;;;:::i;:::-;28573:7;28559:22;;;;;;;;;;;;28459:130;:::o;28329:122::-;28386:21;28399:7;28386:8;:12;;:21;;;;:::i;:::-;28435:7;28423:20;;;;;;;;;;;;28329:122;:::o;21797:204::-;21898:95;21917:5;21947;:18;;;:27;;;;21976:4;21982:2;21986:5;21924:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;21924:68:0;;;;;;;38:4:-1;29:7;25:18;67:10;61:17;96:58;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;21924:68:0;21898:18;:95::i;:::-;21797:204;;;;:::o;50693:380::-;50791:11;50825:25;50839:10;50825:13;:25::i;:::-;50820:246;;50867:15;50885:17;50896:5;50885:10;:17::i;:::-;50867:35;;50932:1;50921:7;:12;50917:26;;;50942:1;50935:8;;;;;50917:26;50966:23;50981:7;50966:10;:14;;:23;;;;:::i;:::-;50960:29;;51026:28;51050:3;51026:19;;:23;;:28;;;;:::i;:::-;51004:19;:50;;;;50820:246;;50693:380;;;;;:::o;44315:89::-;44368:12;;;;;;;;;;;:20;;;44389:6;44368:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44368:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44368:28:0;;;;44315:89;:::o;43824:433::-;43929:18;43965:23;43991;:21;:23::i;:::-;43965:49;;44046:1;44029:13;:11;:13::i;:::-;:18;44025:90;;;44069:46;38232:2;44069:15;:19;;:46;;;;:::i;:::-;44062:53;;;;;44025:90;44141:108;44232:16;44141:72;44199:13;:11;:13::i;:::-;44142:37;44162:16;44142:15;:19;;:37;;;;:::i;:::-;44141:57;;:72;;;;:::i;:::-;:90;;:108;;;;:::i;:::-;44128:121;;43824:433;;;;;:::o;15689:308::-;15784:1;15765:21;;:7;:21;;;;15757:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15850:24;15867:6;15850:12;;:16;;:24;;;;:::i;:::-;15835:12;:39;;;;15906:30;15929:6;15906:9;:18;15916:7;15906:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;15885:9;:18;15895:7;15885:18;;;;;;;;;;;;;;;:51;;;;15973:7;15952:37;;15969:1;15952:37;;;15982:6;15952:37;;;;;;;;;;;;;;;;;;15689:308;;:::o;50271:414::-;50371:11;50405:25;50419:10;50405:13;:25::i;:::-;50400:278;;50447:15;50465:17;50476:5;50465:10;:17::i;:::-;50447:35;;50512:1;50501:7;:12;50497:26;;;50522:1;50515:8;;;;;50497:26;50546:55;50593:7;50547:40;50574:12;50547:22;:20;:22::i;:::-;:26;;:40;;;;:::i;:::-;50546:46;;:55;;;;:::i;:::-;50540:61;;50638:28;50662:3;50638:19;;:23;;:28;;;;:::i;:::-;50616:19;:50;;;;50400:278;;50271:414;;;;;:::o;49161:165::-;49263:10;;;;;;;;;;;:27;;;49297:6;49305:3;;;;;;;;;;;49310:7;49263:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49263:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49263:55:0;;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49263:55:0;;;;;;;;;;;;;;;;;49161:165;;:::o;47837:1316::-;47981:26;48010:14;48025:15;48010:31;;;;;;;;;;;;;;;;;;;;;;;;;47981:60;;48054:20;37824:42;48089:33;;:18;:33;;;48085:1061;;;48139:14;48156:22;:20;:22::i;:::-;48139:39;;48215:6;48197:15;:24;48193:157;;;48257:15;48242:30;;48193:157;;;48328:6;48313:21;;48193:157;48366:38;48382:12;48396:7;48366:15;:38::i;:::-;48085:1061;;;;48437:16;48463:18;48456:36;;;48519:4;48456:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48456:83:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48456:83:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48456:83:0;;;;;;;;;;;;;;;;48437:102;;48576:8;48558:15;:26;48554:161;;;48620:15;48605:30;;48554:161;;;48691:8;48676:23;;48554:161;48731:24;48758:28;:26;:28::i;:::-;48731:55;;48803:124;48837:18;48874:12;48905:7;48803:15;:124::i;:::-;48944:23;48970:28;:26;:28::i;:::-;48944:54;;49013:121;49049:37;49069:16;49049:15;:19;;:37;;;;:::i;:::-;49105:14;49013:17;:121::i;:::-;;48085:1061;;;;47837:1316;;;;;:::o;6361:471::-;6419:7;6669:1;6664;:6;6660:47;;;6694:1;6687:8;;;;6660:47;6719:9;6735:1;6731;:5;6719:17;;6764:1;6759;6755;:5;;;;;;:10;6747:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6823:1;6816:8;;;6361:471;;;;;:::o;7300:132::-;7358:7;7385:39;7389:1;7392;7385:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7378:46;;7300:132;;;;:::o;44463:91::-;44517:12;;;;;;;;;;;:21;;;44539:6;44517:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44517:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44517:29:0;;;;44463:91;:::o;16329:348::-;16424:1;16405:21;;:7;:21;;;;16397:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16498:68;16521:6;16498:68;;;;;;;;;;;;;;;;;:9;:18;16508:7;16498:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;16477:9;:18;16487:7;16477:18;;;;;;;;;;;;;;;:89;;;;16592:24;16609:6;16592:12;;:16;;:24;;;;:::i;:::-;16577:12;:39;;;;16658:1;16632:37;;16641:7;16632:37;;;16662:6;16632:37;;;;;;;;;;;;;;;;;;16329:348;;:::o;35327:229::-;35421:1;35401:22;;:8;:22;;;;35393:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35511:8;35482:38;;35503:6;;;;;;;;;;;35482:38;;;;;;;;;;;;35540:8;35531:6;;:17;;;;;;;;;;;;;;;;;;35327:229;:::o;23652:1114::-;24256:27;24264:5;24256:25;;;:27::i;:::-;24248:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24393:12;24407:23;24442:5;24434:19;;24454:4;24434:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;182:3;176:10;171:3;164:23;98:2;93:3;89:12;82:19;;123:2;118:3;114:12;107:19;;148:2;143:3;139:12;132:19;;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;24434:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;24392:67:0;;;;24478:7;24470:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24559:1;24539:10;:17;:21;24535:224;;;24681:10;24670:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24670:30:0;;;;;;;;;;;;;;;;24662:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24535:224;23652:1114;;;;:::o;27012:183::-;27092:18;27096:4;27102:7;27092:3;:18::i;:::-;27084:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27182:5;27159:4;:11;;:20;27171:7;27159:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;27012:183;;:::o;26754:178::-;26832:18;26836:4;26842:7;26832:3;:18::i;:::-;26831:19;26823:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26920:4;26897;:11;;:20;26909:7;26897:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;26754:178;;:::o;49334:272::-;49466:10;;;;;;;;;;;:27;;;49514:11;49541:6;49562:3;;;;;;;;;;;49580:7;49466:132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49466:132:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49466:132:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49466:132:0;;;;;;;;;;;;;;;;;49334:272;;;:::o;7962:345::-;8048:7;8147:1;8143;:5;8150:12;8135:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;8135:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8174:9;8190:1;8186;:5;;;;;;8174:17;;8298:1;8291:8;;;7962:345;;;;;:::o;18642:619::-;18702:4;18964:16;18991:19;19013:66;18991:88;;;;19182:7;19170:20;19158:32;;19222:11;19210:8;:23;;:42;;;;;19249:3;19237:15;;:8;:15;;19210:42;19202:51;;;;18642:619;;;:::o
Swarm Source
bzzr://4f2bc68790e679eff7bf0f4df9aee30b10b69380669182d7556fd2cb99d4b06a
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.